-
14681_Python // 사분면 고르기IT_Baekjoon 단계별로 풀어보기/if문 2020. 3. 20. 17:30
Python
a = int(input()) b = int(input()) if(a>0 and b>0) : print("1") elif(a<0 and b>0) : print("2") elif(a<0 and b<0) : print("3") elif(a>0 and b<0) : print("4")
===========================
'IT_Baekjoon 단계별로 풀어보기 > if문' 카테고리의 다른 글
2884_Python // 알람 시계 (0) 2020.01.03 2753_Python // 윤년 (0) 2020.01.03 9498_Python // 시험 성적 (0) 2020.01.03 1330_Python // 두 수 비교하기 (0) 2020.01.03