최대 1 분 소요

[백준 14681번] 사분면 구하기

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package _1월_4주차;
 
import java.util.Scanner;
public class 백준_손수경_정답_14681 {
 
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        int x = sc.nextInt();
        int y = sc.nextInt();
        
        if (x > 0 && y > 0) {
            System.out.println(1);
        }
        else if (x > 0 && y < 0) {
            System.out.println(4);
        }
        else if (x < 0 && y > 0) {
            System.out.println(2);
        }
        else {
            System.out.println(3);
        }
    }
 
}
cs

댓글남기기