Possible Duplicate:
Precision of Floating Point
Hello
If I run this code:
float f = 10f;
f -= 0.2f;
f -= 0.2f;
f -= 0.2f;
f -= 0.2f;
f -= 0.2f;
System.out.println(f);
Why is the output not 9 but 9.000001???
|
|
Hello If I run this code:
Why is the output not
|
||
|
|
See this article. To quote:
|
||
|
|
|
|
Because “0.2” can not be exactly represented as a float. Check IEEE 754 for details. |
||
|
|
0.200000002980232. – Nick D Sep 12 at 20:14