본문 바로가기
알고리즘풀이/백준-자바

[백준/JAVA] 14681번 사분면 고르기

by 이얏호이야호 2020. 7. 20.

import java.util.Scanner;


public class Main {

public static void main(String args[]) {

Scanner in = new Scanner(System.in);

int x, y;

x = in.nextInt();

y = in.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 {

System.out.println("4");

}

}

}

더 많은 백준 코드가 보고 싶다면 ?  https://chuinggun.tistory.com/category/%EB%B0%B1%EC%A4%80


댓글