반응형
제 1사분면은 x(+), y(+) / 제 2사분면은x(-), y(+) / 제 3사분면은 x(-), y(-) / 제 4사분면은 x(+), y(-) 이다.
제 2사분면(-, +) | 제 1사분면(+, +) |
제 3사분면(-, -) | 제 4사분면(+, -) |
import java.util.*;
public class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int x, y;
x = sc.nextInt();
y = sc.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);
}
sc.close();
}
}
0보다 큰 지 작은 지로 비교해서 해결하면 된다.
반응형
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 2525 - 오븐 시계 (0) | 2024.01.28 |
---|---|
[백준] 2884 - 알람 시계 (0) | 2024.01.27 |
[백준] 2753 - 윤년 (0) | 2024.01.25 |
[백준] 9498 - 시험 성적 (0) | 2024.01.24 |
[백준] 1330 - 두 수 비교하기 (0) | 2024.01.23 |