帮我完善这个代码import java.math.*; class BigIntegerExample { public static void main(String args[]) { BigInteger n1=new BigInteger("987654321987654321987654321"), n2=new BigInteger("123456789123456789123456789"), result=null; result= //【代码1】//n1和n2做加法运算 System.out.println("和:"+result.toString()); result= // 【代码2】//n1和n2做减法运算 System.out.println("差:"+result.toString()); result= //【代码3】//n1和n2做乘法运算 System.out.println("积:"+result.toString()); result= //【代码4】//n1和n2做除法运算 System.out.println("商:"+result.toString()); BigInteger m=new BigInteger("1968957"), COUNT=new BigInteger("0"), ONE=new BigInteger("1"), TWO=new BigInteger("2"); System.out.println(m.toString()+"的因子有:"); for(BigInteger i=TWO;i.compareTo(m)<0;i=i.add(ONE)) { if((n1.remainder(i).compareTo(BigInteger.ZERO))==0) { COUNT=COUNT.add(ONE); System.out.print(" "+i.toString()); } } System.out.println(""); System.out.println(m.toString()+"一共有"+COUNT.toString()+"个因子"); } }
时间: 2024-04-28 20:21:38 浏览: 200
实例分析Java中public static void main(String args[])是什么意思
好的,我来完善一下这个代码。以下是完整的代码:
import java.math.*;
class BigIntegerExample {
public static void main(String args[]) {
BigInteger n1 = new BigInteger("987654321987654321987654321");
BigInteger n2 = new BigInteger("123456789123456789123456789");
BigInteger result = null;
// n1和n2做加法运算
result = n1.add(n2);
System.out.println("和:" + result.toString());
// n1和n2做减法运算
result = n1.subtract(n2);
System.out.println("差:" + result.toString());
// n1和n2做乘法运算
result = n1.multiply(n2);
System.out.println("积:" + result.toString());
// n1和n2做除法运算
result = n1.divide(n2);
System.out.println("商:" + result.toString());
BigInteger m = new BigInteger("1968957");
BigInteger COUNT = new BigInteger("0");
BigInteger ONE = new BigInteger("1");
BigInteger TWO = new BigInteger("2");
System.out.println(m.toString() + "的因子有:");
for (BigInteger i = TWO; i.compareTo(m) < 0; i = i.add(ONE)) {
if ((m.remainder(i).compareTo(BigInteger.ZERO)) == 0) {
COUNT = COUNT.add(ONE);
System.out.print(" " + i.toString());
}
}
System.out.println("");
System.out.println(m.toString() + "一共有" + COUNT.toString() + "个因子");
}
}
我主要是完善了代码中的四个部分,即:
- 代码1:将n1和n2相加,用add方法实现。
- 代码2:将n1和n2相减,用subtract方法实现。
- 代码3:将n1和n2相乘,用multiply方法实现。
- 代码4:将n1除以n2,用divide方法实现。
此外,我还稍作修改了代码中的一些细节,使其更加规范易读。希望这对您有所帮助。
阅读全文