Question: Implement the main method below in a class called Grade. The program should read integer points ( use the Scanner class ) and print the

Implement the main method below in a class called Grade. The program should read integer points (use the Scanner class) and print the grade (A,B,C,D, or F) based on the final score associated with a student. Grades are classified as follows:
Number of Points
Final Grade
Greater than 90
A
Between 80(exclusive) and 90(inclusive)
B
Between 70(exclusive) and 80(inclusive)
C
Between 60(exclusive) and 70(inclusive)
D
Less than or equal to 60
F
Restrictions/Assumptions
Use the message Enter final score to prompt the user to enter the number of points.
Use the Scanner class to read the number of points, i.e., Scanner sc = new Scanner(System.in);
Use System.out.println(...) to print the final grade.
Assume that the user correctly enters an integer score.
Start with this code:
import java.util.Scanner;
public class Grade {
public static void main(String[] args){
 Implement the main method below in a class called Grade. The

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!