Create a java program to calculate the all grades inputted


1) Create a Java Program to calculate the all grades inputted by a student, the average grade for the student, the letter grade for the student, and the valid inputted scores displayed in ascending order.

2) In this program, you will need to allow the user to input as many numeric (real/double) scores into the computer. The program will be responsible for printing the average of the scores.

3) NOTE that you can have a dynamic amount of scores inputted by the user.

4) A sample session is listed below:
Input your First Name: Elmer
Input your Last Name: Fudd
Input a test score (-1.0 to exit): 70
Input a test score (-1.0 to exit): ab
ab is not valid input!
Input a test score (-1.0 to exit): 100
Input a test score (-1.0 to exit): 60
Input a test score (-1.0 to exit): 80
Input a test score (-1.0 to exit): -1
Class Report for: Fudd, Elmer
Inputted values are: [70.0, 100.0, 60.0, 80.0]
Average is: 77.5
Elmer earned a C for the class.
Maximum score is: 100.0
Minimum is: 60.0
Inputted values in ascending order are: [60.0, 70.0, 80.0, 100.0]

5) All shop standards are to be followed as instructed in class.

6) The output listed above must be mathematically correct, however, formatting of the numbers with the decimal places and right justification is not required.

7) Save the Java source file as "mrwJavaProgram03.java" where mrw are your initials.

8) Save the Eclipse Java Project as "mrwJavaProject03" where mrw are your initials.

9) Compress (i.e. create a zip file) the entire contents of the Eclipse Java Project and name it as mrwJavaProject03.zip where mrw are your initials.

10)You will submit the mrwJavaProject03.zip compressed file to the Dropbox for this assignment on or before the due date.

Request for Solution File

Ask an Expert for Answer!!
JAVA Programming: Create a java program to calculate the all grades inputted
Reference No:- TGS01041003

Expected delivery within 24 Hours