[BOJ/C++] 14681 사분면 고르기

mani·2023년 5월 18일
0

baekjoon_step

목록 보기
17/73

점이 어느 사분면에 있는지 알아내는 문제

#include <iostream>

using namespace std;

int main() {
	int x, y;
	cin >> x >> y;
	if (x > 0) {
		if (y > 0)
			cout << "1";
		else if (y < 0)
			cout << "4";
	}
	else if (x < 0) {
		if (y > 0)
			cout << "2";
		else if (y < 0)
			cout << "3";
	}
	return 0;
}
profile
log

0개의 댓글