BOJ 5086 배수와 약수

Jmnote (토론 | 기여)님의 2023년 8월 27일 (일) 03:54 판 (→‎C++)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

BOJ 5086 배수와 약수


2 C++[ | ]

#include <iostream>
using namespace std;

bool isFactor(int a, int b) {
    return a < b && b % a == 0;
}

string determine(int a, int b) {
    if(isFactor(a, b)) return "factor";
    if(isFactor(b, a)) return "multiple";
    return "neither";
}

int main() {
    int a, b;
    while(true) {
        cin >> a >> b;
        if(a == 0) break;
        cout << determine(a, b) << '\n';
    }
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}