pr6388.java 264 Bytes
Newer Older
Tom Tromey committed
1 2 3 4 5 6 7 8 9 10
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);
  }
}