Advertisement
Guest User

Untitled

a guest
Apr 19th, 2018
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1.   public static void main(String[] args)
  2.   {
  3.     Integer a = 127;
  4.     Integer b = 127;
  5.     if(a == b) System.out.println("true");
  6.         else System.out.println("false");
  7.     a++;
  8.     b++;
  9.     if(a == b) System.out.println("true");
  10.         else System.out.println("false");
  11.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement