Answered You can hire a professional tutor to get the answer.
InstructionsCreate a Java class called GradesForFirstName (where FirstName is your own last name). i.e. GradesMaria1. Greet yourself, and then ask how many total grades do you have process [1 point]
Instructions
Create a Java class called GradesForFirstName (where FirstName is your own last name). i.e. GradesMaria
1. Greet yourself, and then ask how many total grades do you have process [1 point]
2. Prompt the user for each grade using a for loop. [1 point]
3. Store all the (integer) grades in an integer array that is the size you got from step 1. [2 points]
4. After you are done collecting grades, print out the total score, lowest score, highest score, and average score to the screen. Note: You must loop through the entire array to come up with each of these calculations. [4 points]
5. Use an if-else-if statement to determine the letter grade based on the average score. Use the same grade scale that is on our course Syllabus. [2 points]