BOJ | 14681번
Python 풀이
x = int(input())
y = int(input())
if x > 0:
if y > 0:
print("1")
elif y < 0:
print("4")
elif x < 0:
if y > 0:
print("2")
elif y < 0:
print("3")
x = int(input())
y = int(input())
if x > 0:
if y > 0:
print("1")
elif y < 0:
print("4")
elif x < 0:
if y > 0:
print("2")
elif y < 0:
print("3")
x>0, y>0
: 1사분면
x<0, y>0
: 2사분면
x<0, y<0
: 3사분면
x>0, y<0
: 4사분면
C++ 풀이
#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;
}
Author And Source
이 문제에 관하여(BOJ | 14681번), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@hrpp1300/BOJ-14681번
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
#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;
}
Author And Source
이 문제에 관하여(BOJ | 14681번), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@hrpp1300/BOJ-14681번저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)