반응형
import java.util.Scanner;
// 14681 사분면 고르기
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int result = 0;
int firstInput = sc.nextInt();
int secondInput = sc.nextInt();
sc.close();
if (firstInput > 0 && secondInput > 0) result = 1;
else if (firstInput < 0 && secondInput > 0) result = 2;
else if (firstInput < 0 && secondInput < 0) result = 3;
else if (firstInput > 0 && secondInput < 0) result = 4;
System.out.print(result);
}
}
문제를 if문에 그래도 적은 간단한 풀이이기에 설명은 생략하겠습니다.
반응형
'🕸 Algorithm > 🕸 백준 BaekJoon' 카테고리의 다른 글
[백준][java][2525][오븐 시계] (0) | 2023.09.30 |
---|---|
[백준][java][2884][알람 시계] (0) | 2023.09.30 |
[백준][java][2753][윤년] (0) | 2023.09.24 |
[백준][java][9498][시험 성적] (0) | 2023.09.24 |
[백준][java][1330][두 수 비교하기] (0) | 2023.09.24 |