Question: Need to make this: Write a Java program named GradeConverter.java that does the following Prompts the user for how many test scores are to be
Need to make this:

Write a Java program named GradeConverter.java that does the following Prompts the user for how many test scores are to be entered. Using a "for" loop asks the user for the scores for each test. The range is 0 to 100 points. Immediately after a score is entered presents back to the student the letter grade equivalent according to the following: A> 92, B is 85 to 92, C is 77 to 84, D is 68 to 76, F is 67 and below After the "for" loop print the following: The average grade, both as a number and as its letter equivalent. The highest grade, both as a number and its letter equivalent. . Hints: You might want write a method that takes as a parameter a double and returns a String with the letter grade. 1. public static String getLetterGrade ( double grade) ( if (
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
