[백준, BOJ 9498] 시험 성적 (java)
Problem Solving/BOJ

[백준, BOJ 9498] 시험 성적 (java)

728x90

출처-https://www.acmicpc.net/problem/9498

 

9498번: 시험 성적

시험 점수를 입력받아 90 ~ 100점은 A, 80 ~ 89점은 B, 70 ~ 79점은 C, 60 ~ 69점은 D, 나머지 점수는 F를 출력하는 프로그램을 작성하시오.

www.acmicpc.net


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