mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
11 lines
264 B
Java
11 lines
264 B
Java
|
public class pr6388
|
||
|
{
|
||
|
public static void main (String[] args)
|
||
|
{
|
||
|
System.out.println (Integer.MIN_VALUE);
|
||
|
System.out.println (0x80000000);
|
||
|
System.out.println (Integer.MIN_VALUE == 0x80000000);
|
||
|
System.out.println (0x80000000 == 0x80000000);
|
||
|
}
|
||
|
}
|