9
Comment utiliser BigInteger?
J'ai ce morceau de code qui ne fonctionne pas: BigInteger sum = BigInteger.valueOf(0); for(int i = 2; i < 5000; i++) { if (isPrim(i)) { sum.add(BigInteger.valueOf(i)); } } La variable somme est toujours 0. Que fais-je mal?
153
java
biginteger