我正在尝试制作一个大整数的大整数.
public class Polynomial4
{
private BigInteger[] coef;
private BigInteger deg;
public Polynomial4(BigInteger a,BigInteger b)
{
coef = new BigInteger[b+1];// here its giving the error
coef[b] = a; // here also its showing error * ///required int found Biginteger
}
}
Run Code Online (Sandbox Code Playgroud)
请帮帮我......先谢谢....