KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > IntAssign


1 public class IntAssign {
2
3     public static void main(String JavaDoc [] args){
4         System.out.println(""+Integer.MIN_VALUE+0);
5         System.out.println(0-Integer.MIN_VALUE);
6     }
7 }
8
Popular Tags