Computer Science, asked by h3lpp1zz, 1 month ago

Create a java program that will ask for 10 list of students with its corresponding general weighted average and sort it from highest to lowest grade to determine the top 10 honors students. If the students have the same general weighted average, the students should be rank accordingly.

Answers

Answered by zainashaikh4
0

Answer:

This program calculates the grade of a student based on the marks entered by user in each subject. Program prints the grade based on this logic.

If the average of marks is >= 80 then prints Grade ‘A’

If the average is <80 and >=60 then prints Grade ‘B’

If the average is <60 and >=40 then prints Grade ‘C’

else prints Grade ‘D’

To understand this Program you should have the knowledge of following concepts of Java:

Similar questions