문제
두 정수 A와 B를 입력받은 다음, A-B를 출력하는 프로그램을 작성하시오.
입력
첫째 줄에 A와 B가 주어진다. (0 < A, B < 10)
출력
첫째 줄에 A-B를 출력한다.
#include <stdio.h>
int main()
{
int a, b;
scanf("%d %d", &a, &b);
if (a > 0) {
if (b < 10) {
printf("%d", a - b);
}
}
return 0;
}
'c > 백준' 카테고리의 다른 글
10869. 사칙연산 (0) | 2023.03.08 |
---|---|
1008. A/B (0) | 2023.03.08 |
10998. AxB (0) | 2023.03.08 |
1000. A+B (0) | 2023.03.08 |
2557. Hello World (0) | 2023.03.08 |