Texts: Submit a zip file of a folder with:
1. MS Word document with algorithm and flowchart.
2. Java program file/files.
3. Screenshot of execution with outputs.
Problem: Write a program to calculate the letter grade of the students in a class with 20 students, named s0, s1, s2, .... s19. They have completed 3 different activities: 3 assignments, 2 tests, 1 project, and 1 final test. The final test is worth 20%, the project is worth 20%, and the tests and assignments are worth 30% each. All assignments are valued equally, and all tests are valued equally. (Hint: Each activity can have a maximum score of 100 points. The scores will be entered in points for each item.) Let a grader input all the scores and finally get the letter grade for all the students.
The letter grades are determined as follows:
- A: % weighted total > 90
- B: 90 > % weighted total > 80
- C: 80 > % weighted total > 70
- D: 70 > % weighted total > 60
- F: % weighted total < 60