⌨️ Algorithms/백준 [Python] 백준 14681번_사분면 고르기 2022. 6. 25. 10:55 - https://www.acmicpc.net/problem/14681 14681번: 사분면 고르기 점 (x, y)의 사분면 번호(1, 2, 3, 4 중 하나)를 출력한다. www.acmicpc.net 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) 공유하기 게시글 관리 MONZHELD '⌨️ Algorithms > 백준' 카테고리의 다른 글 [Python] 백준 2525번_오븐 시계 (0) 2022.06.27 [Python] 백준 2884번_알람 시계 (0) 2022.06.26 [Python] 백준 2753번_윤년 (0) 2022.06.24 [Python] 백준 9498번_시험 성적 (0) 2022.06.23 [Python] 백준 1330번_두 수 비교하기 (0) 2022.06.23 Contents 당신이 좋아할만한 콘텐츠 [Python] 백준 2525번_오븐 시계 2022.06.27 [Python] 백준 2884번_알람 시계 2022.06.26 [Python] 백준 2753번_윤년 2022.06.24 [Python] 백준 9498번_시험 성적 2022.06.23 댓글 0 + 이전 댓글 더보기