I've a funny idiotic problem:
Why is javascript
showing that 10.2 - 17 = -6.800000000000001
?
Found something similar here: Calculate a minus operation in javascript returns a incorrect value but I can't round the numbers.
Can I somehow fix this without specifying how many decimals to use? (I actually have some results that can have 6-7 decimals)
Floating point arithmetic is not always precise.
In particular there is no exact representation of 10.2 as a floating point value, so the nearest representable value is stored instead. This value will be very slightly different from 10.2.
The simplest way to handle it is to round the numbers to a certain number of decimal places when you display them.
Some languages have a
decimal
type that can represent 10.2 exactly. However:0.1 / 0.3
cannot be represented exactly as a decimal. You may still need to round results to a certain number of decimal places when you display them.