mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
9 lines
139 B
Java
9 lines
139 B
Java
|
|
public class negzero
|
||
|
|
{
|
||
|
|
public static void main(String[] args)
|
||
|
|
{
|
||
|
|
System.out.println(-0.0);
|
||
|
|
System.out.println(-0.0f);
|
||
|
|
}
|
||
|
|
}
|