반응형
#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 << 2;
} else if (x < 0 && y < 0) {
cout << 3;
} else {
cout << 4;
}
return 0;
}
반응형
'BaekJoon > C++' 카테고리의 다른 글
1110 : 더하기 사이클 (C++) (0) | 2020.10.29 |
---|---|
10871 : X보다 작은 수 (C++) (0) | 2020.10.22 |
[백준] 2588 : 곱셈 (C++) (0) | 2020.10.19 |
[백준] 1008 : A/B (C++) (0) | 2020.10.19 |
[백준] 10171 : 고양이 (C++) (0) | 2020.10.19 |
댓글