문제풀이
#include <stdio.h>
#pragma warning(disable:4996)
int main(void)
{
int x;
int y;
scanf("%d %d", &x, &y);
if (x > 0 && y > 0)
printf("%d", 1);
else if (x < 0 && y> 0)
printf("%d", 2);
else if (x < 0 && y < 0)
printf("%d", 3);
else
printf("%d", 4);
}
따로 설명할 부분이 없다.
'C C++ > C C++ 백준' 카테고리의 다른 글
C언어 백준 2739번 구구단 (0) | 2022.01.12 |
---|---|
C언어 백준 2884번 알람 시계 (0) | 2022.01.11 |
C언어 백준 2753번 윤년 (0) | 2022.01.11 |
C언어 백준 9498번 시험 성적 (0) | 2022.01.10 |
C언어 백준 1330번 두 수 비교하기 (0) | 2022.01.03 |
댓글