[백준] 14681 사분면 고르기 - Java

Yunki Kim·2022년 11월 27일
0

백준

목록 보기
23/104
post-thumbnail

문제


링크


코드

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        int x = Integer.parseInt(br.readLine());
        int y = Integer.parseInt(br.readLine());

        if (x > 0) {
            if (y > 0) {
                System.out.println("1");
            } else {
                System.out.println("4");
            }
        } else {
            if (y > 0) {
                System.out.println("2");
            } else {
                System.out.println("3");
            }
        }
    }
}

리뷰

한창 조건문 배울 때 풀었던 문제로 기억한다.
각 사분면에 맞는 조건을 넣어주면 되는 간단한 문제

0개의 댓글