티스토리 뷰

< 6059 > 비트단위로 NOT 하여 출력하기

n = int(input())
print (~n)

📌  비트단위 not 연산자는 ~(tilde) 이다.

 

< 6060 > 비트단위로 AND 하여 출력하기

a, b = map(int, input().split())
print (a|b) 

📌 비트단위 and 연산자는 &(ampersand) 이다.

 

< 6061 > 비트단위로 OR 하여 출력하기

a, b = map(int, input().split())
print (a&b)

📌 비트단위 or 연산자는 |(vertical bar) 이다.

 

< 6062 >

a, b = map(int, input().split())
print (a^b)

📌 비트단위 xor 연산자는 ^(circumflex/caret이다.

 

✏️ 정리 ✏️

NOT ~
AND &
OR |
XOR ^

 - 비트연산에 대한 자세한 포스트는 정확히 이해한 후, 업로드 할 예정이다. 

공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함