Computer Science, asked by eugenetape45515, 5 months ago

How will i write the Java program that will use to compute grade calculation for the students. (Using any one of the control statements, and get the inputs as marks, find the total and compute the grade and display it for individual subjects).

Answers

Answered by surajkumarkondakumar
1

Explanation:

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’

Similar questions