happy coding
[c] 1330번. 두 수 비교하기 본문
#include <stdio.h>
int main(void){
int a,b;
scanf("%d %d", &a, &b);
if(a>b)
printf(">");
else if(a<b)
printf("<");
else printf("==");
}
'coding study > baekjoon' 카테고리의 다른 글
[java] 10869.사칙연산 (0) | 2023.04.03 |
---|---|
[c] 9498번. 시험성적 (0) | 2022.12.24 |
[c] 2588번.곱셈 (0) | 2022.12.05 |
[c] 10430번.나머지 (0) | 2022.12.05 |
[c] 3003번.킹, 퀸, 룩, 비숍, 나이트, 폰 (1) | 2022.12.05 |
Comments