반응형
using System;
using System.Collections.Generic;
namespace baek2
{
class Program
{
static void Main(string[] args)
{
while(true)
{
string[] token = Console.ReadLine().Split();
int first = int.Parse(token[0]);
int second = int.Parse(token[1]);
if (first == 0 & second == 0) return;
if ((first % second) == 0)
Console.WriteLine("multiple");
else if((second % first) == 0)
Console.WriteLine("factor");
else
Console.WriteLine("neither");
}
}
}
}
반응형
'코딩테스트 준비 > 백준 C#' 카테고리의 다른 글
백준 C# - 9098 (0) | 2023.09.17 |
---|---|
백준 C# - 2501 (0) | 2023.07.18 |
백준 C# - 2869 +) 풀이 (0) | 2023.07.08 |
백준 C# - 1193 +) 풀이 (0) | 2023.07.08 |
백준 C# - 2292 +) 풀이 (0) | 2023.06.13 |
댓글