Untitled
public text v1 · immutablepublic 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);
}