비트연산 XOR


bitwise XOR
비트연산 XOR

C

#include<stdio.h>
int main() {
   printf("%d",5^6); // 3
}

Java

System.out.println( true ^ true ); // false
System.out.println( true ^ false ); // true
System.out.println( false ^ true ); // true
System.out.println( false ^ false ); // false

System.out.println( 5 ^ 6 ); // 3

PHP

echo 5 ^ 6;
# 3

Python

print( 5 ^ 6 )
# 3

같이 보기