mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-10 20:05:35 +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);
|
||
|
}
|
||
|
}
|