728x90
반응형
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h> // malloc, free 함수를 사용하기 위해 필요
#include <string.h>
int main(void) {
int input1, input2;
while (1)
{
scanf("%d %d\n", &input1, &input2);
if (input1 == 0 && input2 == 0)
break;
else if (input2 % input1 == 0)
printf("factor\n");
else if (input1 % input2 == 0)
printf("multiple\n");
else
printf("neither\n");
}
return 0;
}
-. swtich문으로 하려다가 if, else if, else로 했습니다.
728x90
반응형
'공돌이 > C언어' 카테고리의 다른 글
[백준/C언어] 덩치 (7568번) (2) | 2024.03.18 |
---|---|
[백준/C언어] 커트라인 (25305번) (1) | 2024.03.15 |
[백준/C언어] 중앙 이동 알고리즘 (2903번) (0) | 2024.03.13 |
[백준/C언어] 세탁소 사장 동혁 (2720번) (1) | 2024.03.12 |
[백준/C언어] 색종이 (2563번) (0) | 2024.03.11 |
댓글