백준 14681
import java.util.Scanner;
class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
if(a>0 && b>0){
System.out.println(1);
} else if (a<0 && b>0){
System.out.println(2);
} else if (a<0 && b<0){
System.out.println(3);
} else if (a>0 && b<0){
System.out.println(4);
}
sc.close();
}
}
이번 내용도 크게 다른 내용은 없습니다.
다만 출력값만 한 번 더 확인하고 출력하시면 됩니다.
'백준 알고리즘 - JAVA8 > 2단계 if문' 카테고리의 다른 글
[백준 자바 2884] 알람 시계 (0) | 2020.12.28 |
---|---|
[백준 자바 2753] 윤년 (0) | 2020.12.28 |
[백준 자바 9498] 시험 성적 (0) | 2020.12.28 |
[백준 자바 1330] 두 수 비교하기 (0) | 2020.12.28 |
최근댓글