I have this piece of code, which is not working:
BigInteger sum = BigInteger.valueOf(0);
for(int i = 2; i < 5000; i++) {
if (isPrim(i)) {
sum.add(BigInteger.valueOf(i));
}
}
The sum variable is always 0. What am I doing wrong?
|
I have this piece of code, which is not working:
The sum variable is always 0. What am I doing wrong? |
||||
|
Additionally, re-evaluate your need for |
|||||||
|
The |
|||
|
|
|
BigInteger is an immutable class. So whenever you do any arithmetic, you have to reassign the output to a variable. |
|||
|
|
|
Other replies have nailed it; BigInteger is immutable. Here's the minor change to make that code work.
|
|||
|
|
|
|
|||
|
|
int, so you don't needBigIntegerfor this example. – notnoop Nov 23 '09 at 15:51