java

当前位置:中华考试网 >> java >> java面试题 >> 文章内容

java认证考试编程题(3)

来源:中华考试网  [2016年10月3日]  【

给出大整数加减法的实现思路,例如,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);

}

}

责编:sunny
  • 会计考试
  • 建筑工程
  • 职业资格
  • 医药考试
  • 外语考试
  • 学历考试