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:
\begin{itemize}
\item The average grade, both as a number and as its letter equivalent.
\item The highest grade, both as a number and its letter equivalent.
\end{itemize}
Hints:
1. You might want write a method that takes as a parameter a double and returns a String with the
letter grade.
\texttt{public static String getLetterGrade (double grade) {\\
if (<test for A) {\\
\quad return "A";\\
} else if (test for B) {\\
\quad return "B";\\
and so on through test for D\\
if all tests fail, return "F".
}}
2. Create a variable to hold the highest score. Compare each score to the value of this variable. If
an entered score is higher, assign that score to this variable.
The format for the user interface and presentation of the results is up to you.