* 이진 비트 연산을 수행해서 결과를 정수로 반환하는 연산자 (정수형만 사용 가능) 1. AND 연산 (&) - 둘다 '1'일 경우 '1'로 변환 A 1 0 1 0 B 1 0 1 1 Result 1 0 1 0 int A = 10; int B = 11; System.out.println("A : " + Integer.toBinaryString(A)); System.out.println("B : " + Integer.toBinaryString(B)); System.out.println("A & B : "+Integer.toBinaryString(A & B)); 2. OR 연산 ( | ) - 하나만 '1'일 경우 '1'로 변환 A 1 0 1 0 B 1 0 1 1 Result 1 0 1 1 int A = 10;..