✔ 最佳答案
public class BigIntAdd {
static public BigInteger add(BigInteger a, BigInteger b){
return a.add(b);
}
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
BigInteger a = new BigInteger("11111111111111111111111111111" +
"11111111111111111111111111" +
"11111111111111111111111111" +
"11111111111111111111111111" +
"11111111111111111111111111");
BigInteger b = new BigInteger("11111111111111111111111111111" +
"11111111111111111111111111" +
"11111111111111111111111111" +
"11111111111111111111111111" +
"11111111111111111111111111");
System.out.println(add(a,b).toString());
}
}