소스 코드
# 사용자 입력
userInputA = int(input())
userInputB = int(input())
# x사분면
1, 2, 3, 4
# 사분면 확인
def exe():
if userInputA > 0 and userInputB > 0 :
print(1)
elif userInputA < 0 and userInputB > 0 :
print(2)
elif userInputA < 0 and userInputB < 0 :
print(3)
elif userInputA > 0 and userInputB < 0 :
print(4)
# main
exe()
출력 결과
'5. 알고리즘 > 5_3 백준' 카테고리의 다른 글
[백준알고리즘] 5543번 상근날드 파이썬(Python) (0) | 2020.08.29 |
---|---|
[백준알고리즘] 10039번 평균 점수 파이썬(Python) (0) | 2020.08.28 |
[백준알고리즘] 1008번 A/B 자바(JAVA) (0) | 2020.05.02 |
[백준알고리즘] 1110번 더하기 사이클 자바(JAVA) (0) | 2020.05.02 |
[백준알고리즘] 1193번 분수찾기 자바(JAVA) (0) | 2020.05.02 |