9
BigInteger का उपयोग कैसे करें?
मेरे पास यह कोड है, जो काम नहीं कर रहा है: BigInteger sum = BigInteger.valueOf(0); for(int i = 2; i < 5000; i++) { if (isPrim(i)) { sum.add(BigInteger.valueOf(i)); } } योग चर हमेशा 0. मैं गलत क्या कर रहा हूँ?
153
java
biginteger