문제 링크
https://www.acmicpc.net/problem/14681
나의 코드 (Python)
x = int(input())
y = int(input())
if x > 0 and y > 0:
print(1)
elif x < 0 and y > 0 :
print(2)
elif x < 0 and y < 0:
print(3)
else:
print(4)
사분면의 해당 조건에 맞게 조건문을 설정해줍니다.
'코딩공부 > 백준 (python)' 카테고리의 다른 글
[백준 2525] 오븐 시계 (Python) (0) | 2022.02.14 |
---|---|
[백준 2884] 알람 시계 (Python) (0) | 2022.02.14 |
[백준 9498] 성적 (Python) (0) | 2022.02.14 |
[백준 1330] 두 수 비교하기 (Python) (0) | 2022.02.14 |
[백준 2753] 윤년 (Python) (0) | 2022.02.14 |
댓글