Guest User

Untitled

a guest
Jan 21st, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. int int1 = Integer.MIN_VALUE+1;
  2. int int2 = Integer.MAX_VALUE-1;
  3.  
  4. System.out.println(int1 > int2);
  5. System.out.println(int1-int2 > 0);
  6.  
  7. false
  8. true
Add Comment
Please, Sign In to add comment