blob: f14efbbc9a290e0b114743c40efdb08c692d93d4 (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | public class zeroexp
{
  public static void main (String[] argv)
  {
    // gcj used to give an error about this literal.
    float f = 0E-6F;
    double d = 0E-9;
    System.out.println ("" + f + " " + d);
  }
}
 |