0
Help guys
Write a Java program to compute the grade of a student. The program should read three scores for a student (TMA, MTA, and final exam scores), calculate the total score (the summation of the three scores) and compute the grade based on the following rule: if total score >= 90 → grade = A if 80 <= total score < 90 → grade = B if 70 <= total score < 80 → grade = C if 60 <= total score < 70 →grade = D if total score <60 →grade = F
1 Resposta
+ 2
In add show your code, you did so far.