1. 스캐너
import java.util.*;
public class Main{
public static void main(String[] args) {
Scanner scan=new Scanner(System.in);
int x=scan.nextInt();
int y=scan.nextInt();
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");
}
}
}
2. BufferedReader
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");
}
}
}
'코딩테스트' 카테고리의 다른 글
[COS PRO 1급 기출문제 - Java] 1-1 음식전문점 운영 (0) | 2022.10.16 |
---|---|
[코딩테스트] 백준 6번 알람 시계 (백준 2884번) - Java (0) | 2022.10.12 |
[코딩테스트] 백준 자바 4번 윤년 (백준 2753번) (0) | 2022.10.03 |
[코딩테스트] 백준 자바 3번 시험 성적 (백준 9498번) (0) | 2022.10.03 |
[코딩테스트] 백준 자바 2번 두 수 비교하기 (백준 1330번) (0) | 2022.10.02 |