I run the following code, but did not expect that result..
public class SampleDemo {
public static void main(String args[]) {
System.out.println(10.00 - 9.10);
}
}
I am getting o/p as 0.9000000000000004
Why is it so?
|
I run the following code, but did not expect that result..
I am getting o/p as 0.9000000000000004 Why is it so? |
|||||||||
|
|
This is because decimal values can’t be represented exactly by float or double. One suggestion : Avoid float and double where exact answers are required. Use BigDecimal, int, or long instead Using int :
Using BigDecimal :
|
|||||||
|