Hennie
[백준] 14681번 : 사분면 고르기 (JAVA) 본문
QUESTION
ANSWER
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);
}
}
}
RESULT
'BaekJoon > 02. if문' 카테고리의 다른 글
[백준] 2884번 : 알람 시계 (JAVA) (0) | 2021.04.12 |
---|---|
[백준] 2753번 : 윤년 (JAVA) (0) | 2021.04.12 |
[백준] 9498번 : 시험 성적 (JAVA) (0) | 2021.04.12 |
[백준] 1330번 : 두 수 비교하기 (JAVA) (0) | 2021.04.12 |