Advertisement
Guest User

Untitled

a guest
Jul 29th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.56 KB | None | 0 0
  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package test;
  6.  
  7. import sun.awt.image.IntegerComponentRaster;
  8.  
  9. /**
  10.  *
  11.  * @author Mihai
  12.  */
  13. public class Main {
  14.  
  15.     public static void main(String[] args) {
  16.         //test();
  17.        
  18.         Integer a = 100;
  19.         Integer b = 100;
  20.  
  21.         Integer c = 200;
  22.         Integer d = 200;
  23.        
  24.  
  25.         if ( a == b){
  26.             System.out.println("a==b");
  27.         }
  28.         if ( c == d){
  29.             System.out.println("c==d");
  30.         }
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement