목록코딩테스트 (187)
Note
[codeup] 118. 7의 배수
n = int(input()) if n%7 == 0: print('multiple') else: print('not multiple')
etc/Coding Test
2022. 1. 17. 16:20
[codeup] 117. 큰 수 - 작은 수
n = list(map(int, input().split())) print(max(n)-min(n))
etc/Coding Test
2022. 1. 16. 19:08
[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