728x90
public static void main(String args[]) {
 int x = 9, y = 7;
 int a= x|y;
 int b= x&y;
 int c= x^y;
 
 System.out.println(a); // 15
 System.out.println(b); // 1
 System.out.println(c); // 14
}

① 1001  ② 1001  ③ 1001

    0111      0111      0111 

---------  ---------  ---------

    1111      0001      1110 

 

① OR 연산자는 하나 혹은 둘다 1이면 결과는 1이다.

② AND 연산자는 둘다 1이면 결과가 1이다.

③ XOR 연산자는 하나만 1이어야 결과가 1이다.

728x90
TOP