This program determines the grade average, raised grade average, of individual students and all students.
The program takes scanner input. In the scanner, the number of students, the number of grades for each student, and the grades of each student are entered.
Ultimately, I need to print out each student's grade average, grade average when the lowest grade is dropped, total grade average of the "class," and raised grade average of the class.
I have been spending an inordinate amount of time on this.
Currently, my questions are:
How do I use nested for loops to take all the scores for ONE STUDENT before moving on to the next?
How do I prevent the program from totaling all the scores I'm entering as the total scores for the last student?
And how do I get the lowest score to drop?
That's where the program is malfunctioning right now.
I have posted the full code and output below. It's probably something simple, but I'm losing sleep over it!
Thanks :)