mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00: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);
|
|
}
|
|
}
|