728x90

 0. [c++] 백준 5086 - 배수와 약수

 

https://www.acmicpc.net/problem/

 

 1. 풀이

문제에서 제공한 조건에 맞춰 if문을 활용해 문제해결



2. 소스코드

#include<iostream>

using namespace std;

int a, b;

int main() {
	while (true) {
		cin >> a >> b;
		if (a == 0 && b == 0)
			exit(0);
		if (a < b) {
			if (b % a == 0)
				cout << "factor" << endl;
			else
				cout << "neither" << endl;
		}
		else {
			if (a % b == 0)
				cout << "multiple" << endl;
			else
				cout << "neither" << endl;
		}
	}

	return 0;
}

 3. 참고

 

질문이나 지적 있으시면 댓글로 남겨주세요~

도움 되셨으면 하트 꾹!

+ Recent posts