# 시험성적 확인 프로그래밍 수업의 학점은 아래와 같은 기준으로 결정됩니다. - A+: 95점 이상 - A0: 90점 이상 - B+: 80점 이상 - B0: 70점 이상 - C+: 그 외 ## 문제 주어진 성적 변수에 대한 학점을 반환하는 메소드 <kbd>grade()</kbd> 를 완성하여, 출력 예와 같은 결과를 얻으시오. ## 출력 예 ``` 96점 -> A+ 85점 -> B+ 76점 -> B0 ```
관련 강의로 이동

코드: java 1.8

public class ProgrammingGrades { public static void main(String[] args) { // 변수 생성 int score1 = 96; int score2 = 85; int score3 = 76; // 결과 출력 System.out.printf("%d점 -> %s\n", score1, grade(score1)); System.out.printf("%d점 -> %s\n", score2, grade(score2)); System.out.printf("%d점 -> %s\n", score3, grade(score3)); } public static String grade(int score) { /* 메소드를 완성하시오. */ return "?"; } }

입력

정답이 궁금하다면? 코드를 제출해보세요!