공부하는 히욤이

9498번 : 시험 성적 본문

Algorithm/BaekJoon

9498번 : 시험 성적

히욤이 2019. 2. 18. 23:07

9498번 : 시험 성적

문제 출처 : 백준 알고리즘


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import java.io.IOException;
import java.util.Scanner;
 
public class Main {
 
    public static void main(String[] args) throws Exception, IOException {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        if (n>=90 && n<=100) {
            System.out.println("A");
        } else if (n >=80 && n<=89) {
            System.out.println("B");
        } else if (n >=70 && n<=79) {
            System.out.println("C");
        } else if (n >=60 && n<=69) {
            System.out.println("D");
        } else {
            System.out.println("F");
        }
    }
 
}
 
cs


'Algorithm > BaekJoon' 카테고리의 다른 글

11724번 : 연결 요소의 개수  (0) 2019.03.07
2606번 : 바이러스  (1) 2019.03.07
2558번 : A+B  (0) 2019.02.18
10430번 : 나머지  (0) 2019.02.18
10869번 : 사칙연산  (0) 2019.02.18