반응형
SMALL
package function;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int x = Integer.parseInt(sc.nextLine());
int y = Integer.parseInt(sc.nextLine());
if(x>0){
if(y>0){
System.out.print(1);
} else {
System.out.print(4);
}
} else {
if(y>0){
System.out.print(2);
} else {
System.out.print(3);
}
}
}
}
반응형
LIST
'백준' 카테고리의 다른 글
백준 16504번 문제 종이접기 (Java) (0) | 2021.04.18 |
---|---|
백준 1330번 문제 두 수 비교하기 (Java) (0) | 2021.04.18 |
백준 2884번 문제 알람 시계 (Java) (0) | 2021.04.17 |
백준 9498번 문제 시험 성적 (Java) (0) | 2021.04.17 |
백준 2753번 문제 윤년 (Java) (0) | 2021.04.17 |