All pastes #2066341 Raw Edit

Untitled

public text v1 · immutable
#2066341 ·published 2011-05-21 19:54 UTC
rendered paste body
public static void main(String[] args) {
		// TODO Auto-generated method stub

		 System.out.println(" 12 | 11 OR operator");
		    int x = 12 | 11;

                   // 64 32 16  8  4  2  1
                  //    0   0    0  0  0  0  0
		    
                    System.out.println("12 = 1100");
		    System.out.println("11 = 1011");
		    
		    System.out.println("15 = 1111");
		    
		    System.out.println("12 | 11 = " + x);
		    
	}