백준 14681 파이썬
2024. 1. 16. 16:09ㆍ코딩 도구/백준 (단계별)
반응형
백준 14681 : 사분면 고르기
문제
https://www.acmicpc.net/problem/14681
답안 코드 :
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")
백준 / 문제 / 단계별로 풀어보기 / 2단계 조건문
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")
반응형
'코딩 도구 > 백준 (단계별)' 카테고리의 다른 글
백준 2884 파이썬 (0) | 2024.01.17 |
---|---|
백준 2525 파이썬 (2) | 2024.01.17 |
백준 2753 파이썬 (2) | 2024.01.16 |
백준 9498 파이썬 (0) | 2024.01.15 |
백준 1330 파이썬 그리고 예외처리 (0) | 2024.01.15 |