[백준] 14681번-(Python 파이썬) - if문

Choe Dong Ho·2021년 6월 23일
0

백준(python)

목록 보기
21/47

문제링크 : https://www.acmicpc.net/problem/14681


이번 문제도 if문을 이용한 간단한 문제이다.
1사분면 - x>0, y>0
2사분면 - x<0, y>0
3사분면 - x<0, y<0
4사분면 - x>0, y<0
위의 규칙을 활용하여 문제를 풀어준다.

x = int(input())
y = int(input())

print(1 if x > 0 and y > 0\
  else(2 if x < 0 and y > 0\
    else(3 if x < 0 and y < 0\
       else(4 if x > 0 and y < 0 else print("0이외의 숫자를 입력하시오")))))
profile
i'm studying Algorithm

0개의 댓글