목록CodeUp (56)
Note
[codeup] 116. 10보다 작은 수
n = int(input()) if n < 10: print('small') else: print()
etc/Coding Test
2022. 1. 15. 21:00
[codeup] 115. 정수 3개 입력받아 짝수만 출력하기
n = list(map(int, input().split())) for i in n: if i%2==0: print(i)
etc/Coding Test
2022. 1. 14. 15:48
[codeup] 114. 세 수 중 가장 작은 수
n = list(map(int, input().split())) print(min(n))
etc/Coding Test
2022. 1. 13. 20:38
[codeup] 113. 논리 연산자(OR)
a,b = map(int,input().split()) if a or b: print(1) else: print(0)
etc/Coding Test
2022. 1. 12. 19:44