[백준] #4504 배수 찾기 python
2023. 2. 28. 06:00
https://www.acmicpc.net/problem/4504
📕 설명 📕
수를 직접 나누어 배수인지 아닌지 판별하였다.
🧑🏻💻 나의 풀이 🧑🏻💻
T = int(input())
while True:
N = int(input())
if N == 0:
break
if N % T == 0:
print(N,"is a multiple of",str(T)+".")
elif N % T != 0:
print(N,"is NOT a multiple of",str(T)+".")
'Programming > Algorithm' 카테고리의 다른 글
[백준] #5613 계산기 프로그램 python (0) | 2023.03.02 |
---|---|
[백준] #4880 다음수 python (0) | 2023.03.01 |
[백준] #4447 좋은놈 나쁜놈 python (0) | 2023.02.27 |
[백준] #4493 가위 바위 보? python (0) | 2023.02.26 |
[백준] #3047 ABC python (0) | 2023.02.25 |