728x90
문제
시험 점수를 입력받아 90 ~ 100점은 A, 80 ~ 89점은 B, 70 ~ 79점은 C, 60 ~ 69점은 D, 나머지 점수는 F를 출력하는 프로그램을 작성하시오.
입력
첫째 줄에 시험 점수가 주어진다. 시험 점수는 0보다 크거나 같고, 100보다 작거나 같은 정수이다.
출력
시험 성적을 출력한다.
코드
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws Exception{
// TODO Auto-generated method stub
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int score = Integer.parseInt(br.readLine());
switch(score/10) {
case 10 :
case 9 : System.out.println("A"); break;
case 8 :System.out.println("B"); break;
case 7 :System.out.println("C"); break;
case 6 :System.out.println("D"); break;
default : System.out.println("F");
}
}
}
728x90
728x90
'Algorithm > Baekjoon' 카테고리의 다른 글
Baekjoon 10818 최소, 최대 JAVA (0) | 2022.01.12 |
---|---|
Baekjoon 2884 알람 시계 JAVA (0) | 2022.01.12 |
Baekjoon 2753 윤년 JAVA (0) | 2022.01.12 |
Baekjoon 8958 OX퀴즈 JAVA (0) | 2022.01.12 |
Baekjoon 3052 나머지 JAVA (0) | 2022.01.12 |
댓글