문제

https://www.acmicpc.net/problem/9498


문제 풀이

1
2
3
4
5
6
7
8
9
10
11
12
13
14
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int score = sc.nextInt();

        if(score>=90) System.out.println("A");
        else if(score>=80) System.out.println("B");
        else if(score>=70) System.out.println("C");
        else if(score>=60) System.out.println("D");
        else System.out.println("F");
    }
}

카테고리:

업데이트:

댓글남기기