In given example:
int a, b, c;
a = 2111000333;
b = 1000222333;
c = a + b;
System.out.println("c= " + c);
will return: c= -1183744630 , why?
How to fix that?
|
In given example:
will return: How to fix that? |
||||
|
|
|
Your integer is overflowing. An integer has a maximum value of A long has a bigger range.
|
|||||||||||||||||||||
|
|
The MAX_VALUE of a Java long is 9223372036854775807, so Scharrels' solution works for your example. Here's another solution that can go even higher, should you need it.
This approach is bounded only by JVM memory. |
|||
|
|
|||
|
|
|
The maximum value of an int in Java is 2,147,483,647. When you want to compute something over this value, you must use the long type. |
|||
|
|
|
|||
|
|