x = 4.2 - 0.1
vb.net gives 4.1000000000000005
python gives 4.1000000000000005
Excel gives 4.1
Google calc gives 4.1
What is the reason this happens?
|
|
vb.net gives Excel gives What is the reason this happens? |
||||||||||||||||
|
|
|
You must remember that in binary, 4.1 = 4 + 1/10. 1/10 is an infinitely repeating sum in binary, much like 1/9 is an infinite sum in decimal. |
||
|
|
|
This happens because of how numbers are stored internally. Computers represent numbers in binary, instad of decimal, as us humans are used to. With floating point numbers, computers have to make an aproximation to the closest binary floating point value.
If you If you really need a base 10 based number (if you don't know the answer to this question, you don't), you could use (in Python)
|
|||
|
|
In vb.net, you can avoid this problem by using Decimal type instead:
The result is 4.1 . |
||
|
|
|
|
There is no problem, really. It is just the way floats work (their internal binary representation). Anyway:
|
||
|