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.

Why does the following program print what it prints?

class Program
{
    static void Main(string[] args)
    {
        float f1 = 0.09f*100f;
        float f2 = 0.09f*99.999999f;

        Console.WriteLine(f1 > f2);
    }
}
share|improve this question
Why don't you just try it for yourself? – Daniel A. White Apr 15 '09 at 22:14
I tried, I just want to know why I see what I see. – Prankster Apr 15 '09 at 22:17

3 Answers

up vote 20 down vote accepted

Floating point only has so many digits of precision. If you're seeing f1 == f2, it is because any difference requires more precision than a 32-bit float can represent.

I recommend reading What Every Computer Scientist Should Read About Floating Point

share|improve this answer
+1 Why, why do I see after hitting the Submit button that someone has posted the links? :P – dirkgently Apr 15 '09 at 22:20
+1 msdn.microsoft.com/en-us/library/b1e65aza(VS.71).aspx Michael is correct, C# float only has 7 digit precision, and 99.999999f has 8 digits. – James Apr 15 '09 at 22:28
3  
This is not C# specific. A single-precision IEEE-754 float will only be 32-bits, which gives around 7 decimal digits of precision. If you want better than that, use a double. – Wedge Apr 15 '09 at 22:51
Doubles just push the problem out a few more bits. What you really want are quad doubles like those from the QD library (see crd.lbl.gov/~dhbailey/mpdist). There's an arbitrary precision library there too. – RBerteig Apr 17 '09 at 7:53

Not a direct answer, but may help to understand what is going on:What Every Computer Scientist Should Know About Floating-Point Arithmetic.

share|improve this answer

The main thing is that this isn't just .Net: it's a limitation of the underlying system most every language will use to represent a float in memory. The precision only goes so far.

You can also have some fun with relatively simple numbers, when you take into account that it's not even base ten. 0.1, for example, is a repeating decimal when represented in binary.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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