Hello, I am new to java and I was wondering if you guys could help me solve this problem:
Your history instructor gives three tests worth 50 points each. you can drop one of the first two grades. your final grade is the sum of the best of the first two grades and the third grade. Given three test grades, write a program that calculates the final letter grade using the following cut-off points. The output should list all thee test grades, state what test was dropped and the final letter grade.
>=90 A
<90, >=80 B
<80, >=70 C
<70, >=60 D
<60 F
(please use if/else statement)