My output is like this -
ruby-1.9.2-p290 :011 > 2.32 * 3
=> 6.959999999999999
And I remember sometime back on another machine I had got it like.. 2.32 * 3 = 6
What is my mistake? Thanks a ton for reading this. :)
|
My output is like this -
And I remember sometime back on another machine I had got it like.. What is my mistake? Thanks a ton for reading this. :) | ||||
|
feedback
|
|
If you really want to round down to an integer then just
but I think that's unlikely. Usually you just want to format the slightly imprecise floating point number to something like this
If you really want to work with the exact representation then you can use BigDecimal.
PS. Recommended read http://floating-point-gui.de/ DS. | |||||||
feedback
|
|
I cannot tell you about Ruby, so please forgive me. But frankly the principles stay the same, so I hope that'll help:
As you can see, Python does the same.
Java does the same! So what's wrong with it? Let's try to move to
What you see here is what actually is meant by The inexact value, due to the fact that floats are in fact binary-represented reals, not decimal ones—which, in turn, makes those binaries repeating, or recurring. And as you can guess, repeating real in a limited space won't ever be exact. Actually, I was lying when I said the scary decimal above is what is meant by Read more here: http://floating-point-gui.de/ | ||||
feedback
|
|
Your problem is just that http://en.wikipedia.org/wiki/Floating_point#Accuracy_problems That's not really language specific. | |||
|
feedback
|
2.32.to_i * 3 => 6– Maletor Oct 20 '11 at 20:55