지나가던 개발자
[Python] 백준 4504번(배수 찾기) 문제 풀이 본문
n = int(input())
hihi = []
while True:
a = int(input())
if a == 0:
break
hihi.append(a)
for hi in hihi:
if hi % n == 0:
print(str(hi) + " is a multiple of " + str(n) + ".")
continue
print(str(hi) + " is NOT a multiple of " + str(n) + ".")
'PS > Python' 카테고리의 다른 글
[Python] 백준 3058번(짝수를 찾아라) 문제 풀이 (0) | 2022.02.18 |
---|---|
[Python] 백준 2845번(파티가 끝나고 난 뒤) 문제 풀이 (0) | 2022.02.18 |
[Python] 백준 10797번(10부제) 문제 풀이 (0) | 2022.02.18 |
[Python] 백준 15726(이칙연산) 문제 풀이 (0) | 2022.02.18 |
[Python] 백준 11051번(이항 계수 2) 문제 풀이 (0) | 2022.02.17 |
Comments