java认证考试编程题(3)
来源 :中华考试网 2016-10-03
中给出大整数加减法的实现思路,例如,199999999999999998+333333333333333333333,或者123444444444447654-999999999999988877。
代码实现如下:
import java.math.*;
public class BigIntegerTest
{
public static void main(String[] args)
{
BigInteger result;
BigInteger BI1 = new BigInteger("199999999999999998"); //把一个字符串翻译为一个 BigInteger ,该字符串包含可选的负号,后面跟着一个或多个十进制数字序列。
result = BI1.add(new BigInteger("333333333333333333333")); //返回一个 BigInteger ,其值是 (this + val) 。
System.out.println(result);
BigInteger BI2 = new BigInteger("123444444444447654"); //把一个字符串翻译为一个 BigInteger ,该字符串包含可选的负号,后面跟着一个或多个十进制数字序列。
result = BI2.subtract(new BigInteger("999999999999988877")); //返回一个 BigInteger ,其值是 (this - val)。
System.out.println(result);
}
}