import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
sc.close();
if (A >= 90) System.out.println('A');
else if (A >=80) System.out.println('B');
else if (A >=70) System.out.println('C');
else if (A >=60) System.out.println('D');
else System.out.println('F');
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[백준] 14681번 (0) | 2022.12.24 |
---|---|
[백준] 2753번 (0) | 2022.12.24 |
[백준] 1330번 (0) | 2022.12.24 |
[백준] 2588번 (0) | 2022.12.24 |
[백준] 25083번 (0) | 2022.12.24 |