🕸 Algorithm/🕸 백준 BaekJoon

[백준][java][14681][사분면 고르기]

뉴이 NUEY 2023. 9. 29. 18:22
반응형

 

 

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문에 그래도 적은 간단한 풀이이기에 설명은 생략하겠습니다.

 

반응형