zeroexp.java 213 Bytes
Newer Older
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);
  }
}