본문 바로가기

프로그래밍 문제/정올

532 : 선택제어문 - 자가진단5

Java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import java.util.Scanner;
 
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        double num1 = sc.nextDouble();
        double num2 = sc.nextDouble();
 
        if ((4 <= num1) && (4 <= num2))
            System.out.println("A");
        else if ((3 <= num1) && (3 <= num2))
            System.out.println("B");
        else
            System.out.println("C");
    }
}
cs