목록CodeUp (56)
Note
[codeup] 111. 논리 연산자(NOT)
n = int(input()) print(int(not n))
etc/Coding Test
2022. 1. 10. 01:16
[codeup] 110. 관계연산자 2
a,b = map(int, input().split()) if a==b: print(1) else: print(0)
etc/Coding Test
2022. 1. 9. 22:38
[codeup] 109. 관계연산자 1
a,b = map(int, input().split()) if a >= b: print(1) else: print(0)
etc/Coding Test
2022. 1. 8. 00:00
[codeup] 108. 8진수 16진수 변환
n = int(input()) print(format(n,'o'), format(n,'x').upper())
etc/Coding Test
2022. 1. 7. 19:32