JAVA true
[JAVA 기초] 논리 부정 연산자(true, false)
논리 부정 연산자 x !x true false false true public static void main(String[] args) { int x = 0xAB, y = 0xF; System.out.printf("x = %#X \t\t%s%n", x, toBinaryString(x)); System.out.printf("y = %#X \t\t%s%n", x, toBinaryString(y)); System.out.printf("%#X | %#X = %#X \t%s%n", x, y, x | y, toBinaryString(x | y)); System.out.printf("%#X & %#X = %#X \t%s%n", x, y, x & y, toBinaryString(x & y)); System.out.pr..