728x90
https://www.acmicpc.net/problem/14681
#include <iostream>
using namespace std;
int main() {
int x, y;
cin >> x >> y;
if (x > 0 && y > 0) {
cout << 1;
}
else if (x > 0 && y < 0) {
cout << 4;
}
else if (x < 0 && y > 0) {
cout << 2;
}
else {
cout << 3;
}
return 0;
}
728x90
'알고리즘 문제' 카테고리의 다른 글
[백준] 10996번 별 찍기 - 21 (0) | 2020.03.30 |
---|---|
[백준] 10039번 평균 점수 (0) | 2020.03.29 |
[백준] 13458번 시험 감독 (0) | 2020.03.25 |
[백준] 2010번 플러그 (0) | 2020.03.23 |
[백준] 1476번 날짜 계산 (0) | 2020.03.23 |