Possible Duplicate:
Dealing with accuracy problems in floating-point numbers

Whereas 99.99 * 0.01 = 0.99

Clearly this is the age old floating point rounding issue, however the rounding error in this case seems quite large to me; what I mean is I might have expected a result of 0.99990000001 or some similar 'close' result.

And for the record I got the same answer in a JavaVM and in a .Net environment.

link|improve this question

65% accept rate
This has been asked many times before, here - stackoverflow.com/questions/590822/… - is just one example – ChrisF May 28 '10 at 15:35
4  
difference between this answer and 0.99990000001 is the same. you realised this, right? – SilentGhost May 28 '10 at 15:36
And it is close as you expected. – Eric Bainville May 28 '10 at 15:36
2  
This question again?! – Andreas Rejbrand May 28 '10 at 15:54
feedback

closed as exact duplicate by SilentGhost, ryeguy, Thomas Jung, Ahmad Mageed, Jim Lewis May 28 '10 at 16:45

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

Why 0.9998999999999999 is not close enough for you (and 0.9999000000000001 is good )?
abs(0.9999 - 0.9998999999999999) == abs (0.9999 - 0.9999000000000001)

link|improve this answer
Ahh yes, 0.999*8* Well spotted. – locster May 28 '10 at 15:43
feedback

It is a floating point error. For (a lot) more detail see this wikipedia article. Use a decimal if you need accurate fractional results (see here).

link|improve this answer
1  
Or, more precisely, use a decimal if you are doing calculations where the decimal representation of the result is important. – Daniel Pryden May 28 '10 at 15:42
1  
Daniel is right: decimal representation isn't much more accurate than binary. It does however match the arithmetic we usually use, so when exact matches to existing processes are necessary (like in a lot of financial work), use decimal. – David Thornley May 28 '10 at 15:56
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.