728x90
반응형
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int A = scan.nextInt();
int B = scan.nextInt();
scan.close();
if(A > 0) {
if(B<0) {
System.out.println("4");
}else {
System.out.println("1");
}
}
if(A<0) {
if(B<0) {
System.out.println("3");
}else {
System.out.println("2");
}
}
}
}
728x90
반응형
'IT개발자 > 백준_Algorithm' 카테고리의 다른 글
백준 2525번 오븐 시계 JAVA(자바) 문제 풀이 (0) | 2022.04.27 |
---|---|
백준 2884번 알람 시계 JAVA(자바) 문제 풀이 (0) | 2022.04.26 |
백준 2753번 윤년 JAVA(자바) 문제 풀이 (0) | 2022.04.24 |
백준 9498번 시험 성적 JAVA(자바) 문제 풀이 (0) | 2022.04.23 |
백준 1330번 두 수 비교하기 JAVA(자바) 문제 풀이 (0) | 2022.04.22 |