[백준] - 단계별로 풀어보기(조건문) 9498

김민경·2022년 4월 2일
0

백준

목록 보기
2/39

백준 9498번

시험 성적

문제출처 https://www.acmicpc.net/problem/9498


내가 작성한 코드

import java.util.Scanner;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int score;
		score = sc.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");
		}
	}
}

0개의 댓글

관련 채용 정보