java연습문제 - 성적을 입력받아 학점 나타내기

imjingu·2023년 8월 3일
0

개발공부

목록 보기
284/481

사용자에게 성적을 입력받아 if문을 사용해서 학점을 출력하는 코드를 완성하세요.
입력은 0~100 까지 입력이 됩니다.

기준
a : 90~100
b : 80~89
c : 70~79
d : 60~69
f : 0~59

package chapter20230802;
import java.util.Scanner;
public class Test19 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		
		Scanner sc = new Scanner(System.in);
		
		int a;
		System.out.print("성적을 입력하세요: ");
		a = sc.nextInt();
		
		if (a >= 90) {
			System.out.println("A");
		}
		else if (a >= 80) {
			System.out.println("B");
		}
		else if (a >= 70) {
			System.out.println("C");
		}
		else if (a >= 60) {
			System.out.println("D");
		}
		else {
			System.out.println("F");
		}
		sc.close();
	}

}

0개의 댓글