[백준/JAVA] 조건문 - 9498번 시험 성적

신승현·2022년 8월 4일
0

더 좋은 문제 풀이가 있거나 궁금하신 점이 있다면 편하게 댓글 남겨주세요!


📝 문제


9498번 시험 성적


✍ 풀이



import java.util.Scanner;

public class Main {
    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int score = sc.nextInt();

        if (score >=90 && score <=100) System.out.println("A");
        else if (score >=80 && score<90) System.out.println("B");
        else if (score>=70 && score <80) System.out.println("C");
        else if (score>=60 && score<70) System.out.println("D");
        else System.out.println("F");

    }
}
profile
I have not failed. I've just found 10,000 ways that won't work. - Thomas A. Edison

0개의 댓글