Order of floating point operations is important. Doesn't directly answer your question, but you should always be careful comparing floating point numbers. It's usual to include a tolerance:
double epsilon = 0.0000001;
if (abs(result1 - result2) <= epsilon)
{
...
}
This may be of interest: What Every Computer Scientist Should Know About Floating-Point Arithmetic
