반응형
📖 문제
📋 코드
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while (true) {
int a = sc.nextInt();
int b = sc.nextInt();
if(a == 0 && b == 0) {
break;
}else if(a % b == 0) {
System.out.println("multiple");
}else if(b % a == 0) {
System.out.println("factor");
}else {
System.out.println("neither");
}
}
}
}
👨🏻💻 결과
🔗 링크
https://www.acmicpc.net/problem/5086
반응형
'🧩PS > 🥉Easy' 카테고리의 다른 글
[JAVA] 백준 2609번 - 최대공약수와 최소공배수 (0) | 2021.11.16 |
---|---|
[JAVA] 백준 1037번 - 약수 (0) | 2021.11.08 |
[JAVA] 백준 13305번 - 주유소 (0) | 2021.11.08 |
[JAVA] 백준 1541번 - 잃어버린 괄호 (0) | 2021.11.05 |
[JAVA] 백준 11399번 - ATM (0) | 2021.11.05 |