본문 바로가기
알고리즘/백준

[Python/Java] 백준 14681번 - 사분면 고르기

by 소꿍 2020. 6. 8.

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

 

14681번: 사분면 고르기

문제 흔한 수학 문제 중 하나는 주어진 점이 어느 사분면에 속하는지 알아내는 것이다. 사분면은 아래 그림처럼 1부터 4까지 번호를 갖는다. "Quadrant n"은 "제n사분면"이라는 뜻이다. 예를 들어, 좌

www.acmicpc.net

 

Python

 

x = int(input())
y = int(input())

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

Java

 

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int x = scan.nextInt();
		int y = scan.nextInt();
		
		if (x > 0 && y > 0) {
			System.out.println(1);
		} else if(x < 0 && y > 0) {
			System.out.println(2);
		} else if(x < 0 && y < 0) {
			System.out.println(3);
		} else if(x > 0 && y < 0) {
			System.out.println(4);
		}
	}
}

댓글