mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-25 22:10:00 +08: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);
|
||
|
}
|
||
|
}
|