반응형
[C++] BAEKJOON 14681번 : 사분면 고르기
#include <iostream>
using namespace std;
int main()
{
int x, y;
cin >> x;
cin >> y;
if (x > 0) {
if (y > 0) {
cout << "1";
}
else {
cout << "4";
}
}
else {
if (y > 0) {
cout << "2";
}
else {
cout << "3";
}
}
}
반응형
'Thinking > BAEKJOON' 카테고리의 다른 글
C++ BAEKJOON 2525번 오븐 시계 (0) | 2022.08.17 |
---|---|
C++ BAEKJOON 2884번 알람 시계 (0) | 2022.08.17 |
C++ BAEKJOON 2753번 윤년 (0) | 2022.08.17 |
C++ BAEKJOON 9498번 시험 성적 (0) | 2022.08.17 |
C++ BAEKJOON 1330번 두 수 비교하기 (0) | 2022.08.17 |