728x90
출처-https://www.acmicpc.net/problem/9498
728x90
import java.util.*;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner scan=new Scanner(System.in);
int score=scan.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");
}
}
728x90
'Problem Solving > BOJ' 카테고리의 다른 글
[백준, BOJ 14681] 사분면 고르기 (java) (0) | 2020.08.20 |
---|---|
[백준, BOJ 2753] 윤년 (java) (0) | 2020.08.20 |
[백준, BOJ 1330] 두 수 비교하기 (java) (0) | 2020.08.20 |
[백준, BOJ 2588] 곱셈 (java) (0) | 2020.08.20 |
[백준, BOJ 10430] 나머지 (java) (0) | 2020.08.20 |