Problably an easy questions but this calculation bothers me.. why is double test = 57.05 - 57 equal to 0.049999999999997158 and not 0.05? And which datatype should I use to get the correct result?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||||
|
|
Use a |
|||||||
|
|
Try to convert .05 decimal to binary and tell me what result you get (hint: it's a repeating value). |
|||
|
|
|
Long answer: Floating Point Representation Short answer: types like double conform to IEEE 754, which dictates data types which may have a decimal point anywhere (floating). Because of the representation in the computer's native binary, the result of mathematical operations on these representations in many cases may only be an approximation of the actual result. |
||||
|
|
|
Floating point calculations are not as correct. How about double-precision-problems-on-c-net |
|||
|
|