728x90
https://www.acmicpc.net/problem/4504
#include <iostream>
using namespace std;
int main() {
cin.tie(NULL);
ios_base::sync_with_stdio(false);
int n;
cin >> n;
while (true) {
int i;
cin >> i;
if (i == 0) break;
if (i % n == 0) cout << i << " is a multiple of " << n << ".\n";
else cout << i << " is NOT a multiple of " << n << ".\n";
}
return 0;
}
728x90
'알고리즘 문제' 카테고리의 다른 글
[백준] 2529번 부등호 (0) | 2020.02.28 |
---|---|
[백준] 1138번 한 줄로 서기 (0) | 2020.02.28 |
[백준] 1919번 애너그램 만들기 (0) | 2020.02.28 |
[백준] 7562번 나이트의 이동 (0) | 2020.02.28 |
[백준] 1145번 적어도 대부분의 배수 (0) | 2020.02.25 |