9
Làm thế nào để sử dụng BigInteger?
Tôi có đoạn mã này không hoạt động: BigInteger sum = BigInteger.valueOf(0); for(int i = 2; i < 5000; i++) { if (isPrim(i)) { sum.add(BigInteger.valueOf(i)); } } Biến tổng luôn là 0. Tôi đang làm gì sai?
153
java
biginteger