9
如何使用BigInteger?
我有这段代码,它不起作用: BigInteger sum = BigInteger.valueOf(0); for(int i = 2; i < 5000; i++) { if (isPrim(i)) { sum.add(BigInteger.valueOf(i)); } } sum变量始终为0。我在做什么错?
153
java
biginteger