자바알고리즘 - 입출력 - 백준 9498 시험 성적

 

문제

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

 

생각

if else문으로 출력한다.

 

 

코드

 

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {

    public static void main(String[] args) throws IOException {
        BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
        int N = Integer.parseInt(bf.readLine());
        if(N>=90) {
            System.out.println("A");
        }
        else if(80<=N && N<=89) {
            System.out.println("B");
        }
        else if(70<=N && N<=79) {
            System.out.println("C");
        }
        else if(60<=N && N<=69) {
            System.out.println("D");
        }
        else {
            System.out.println("F");
        }

    }
}

+ Recent posts