https://issues.apache.org/bugzilla/show_bug.cgi?id=46156





--- Comment #3 from Josh Micich <[EMAIL PROTECTED]>  2008-11-05 23:30:24 PST ---
Just an aside - to be clear about the rounding problem at hand.  The following
java code:
System.out.println(0.06);
System.out.println(0.05 + 0.01);

produces the following output:
0.06
0.060000000000000005

In this example of the apparent anomaly, the value 0.06 *seems* to be exactly
representable with an IEEE double, but the evaluation of 0.05+0.01 produces a
result which is not quite equal to 0.06.

These anomalies are not obvious in Excel.


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to