慕莱坞9220042
你好:public class BigInteger //表示很大的整数
{
int sign; //标识符号
byte[] val; //用字节数组表示数值的二进制数
//构造方法,把一个包含有多位数值的字符串转换到内部的符号和字节数组中
public Biginteger(String val)
{
sign = ;
val = ;
}
//+-*%方法
public BigInteger add(BigInteger other){}
public BigInteger subtract(BigInteger other){}
public BigInteger multiply(BigInteger other){}
public BigInteger divide(BigInteger other){}
}望采纳!