[BOJ_14681]사분면 고르기

조준형·2021년 6월 30일
0

Algorithm

목록 보기
2/142
post-thumbnail

https://www.acmicpc.net/problem/14681

알고리즘 분류

  • 수학
  • 구현
  • 기하학

제출 코드

import sys

x = int( sys.stdin.readline());
y = int( sys.stdin.readline());

if x>0 and y >0 :
    print(1)
elif x > 0 and y < 0:
    print(4)
elif x < 0 and y < 0:
    print(3)
else:
    print(2)

조건문 써보기.

profile
깃허브 : github.com/JuneHyung

0개의 댓글