mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-07 07:57:30 +02:00
11 lines
213 B
Java
11 lines
213 B
Java
|
|
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);
|
||
|
|
}
|
||
|
|
}
|