-
Bug
-
Resolution: Cannot Reproduce
-
P3
-
None
-
1.1.2, 1.1.6
-
x86, sparc
-
solaris_2.6, windows_nt
Name: bb33257 Date: 08/13/97
Formatting 0.00159999 with 4 fractional digits should produce
"0.0016". Instead, the result is 0.0015.
double x = 0.00159999;
NumberFormat nf = NumberFormat.getInstance();
nf.setMaximumFractionDigits(4);
String out = nf.format(x);
logln("0.00159999 formats with 4 fractional digits to " + out);
String expected = "0.0016";
if (!out.equals(expected)) errln("FAIL: Expected " + expected);
======================================================================