All pastes #2066340 Raw Edit

Untitled

public text v1 · immutable
#2066340 ·published 2011-05-21 19:52 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;
		    System.out.println("12 = 1100");
		    System.out.println("11 = 1011");
		    
		    System.out.println("15 = 1111");
		    
		    System.out.println("12 | 11 = " + x);
		    
	}