이 문제도 매우 간단하다.
이 문제는 먼저 각 사분면일때의 x,y의 음수 양수를 확인하면 된다.
제 1사분면(양,양)
제 2사분면(음,양)
제 3사분면(음,음)
제 4사분면(음,양)
아래와 같이 할 수 있다. 이번에도 한 가지의 경우의 수를 줄여보자.
import java.util.*;
public class Step2_4 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
Math.x = sc.nextInt();
Math.y = sc.nextInt();
Math.Quadrant();
}
}
class Math {
static int x, y;
static void Quadrant() {
int result = 1; // Quadrant 1
if(x < 0 && y > 0) // Quadrant 2
result = 2;
else if(x < 0 && y < 0) // Quadrant 3
result = 3;
else if(x > 0 && y < 0)// Quadrant 4
result = 4;
System.out.println(result);
}
}
'알고리즘 분류 > Step2 조건문' 카테고리의 다른 글
</Step2_6> 2525 오븐 시계 JAVA (0) | 2023.03.11 |
---|---|
</Step2_5> 2884 알람 시계 JAVA (0) | 2023.03.11 |
</Step2_3> 2753 윤년 JAVA (0) | 2023.03.11 |
</Step2_2> 9498 시험 성적 JAVA (0) | 2023.03.11 |
</Step2_1> 1330 두 수 비교하기 JAVA (0) | 2023.03.11 |