Possible Duplicate:
Floating point inaccuracy examples
Floating point comparison
Computers are meant to be good at arithmetic, aren't they? Why does this print "False"?
double d1 = 1.000001;
double d2 = 0.000001;
Console.WriteLine((d1-d2)==1.0);
or there result will be different in c sharp or java