백준 4504번: 배수 찾기
문제
문제 바로가기> 백준 4504번: 배수 찾기
풀이
입력 받은 수로 나누어떨어지는 확인하면 되는 간단한 문제이다. 출력하는 형식만 주의해주면 된다.
def solution():
import sys
input = sys.stdin.readline
n = int(input())
while(1):
tmp = int(input())
if tmp==0: break
else:
if tmp%n==0: print("%d is a multiple of %d."%(tmp, n))
else: print("%d is NOT a multiple of %d."%(tmp, n))
solution()
Author And Source
이 문제에 관하여(백준 4504번: 배수 찾기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@danbibibi/백준-4504번-배수-찾기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)