Hi, I am having trouble figuring out how to put all of this code together since it combines methods and if else statements. I was wondering if anyone could help me out. Here is the problem:
Write a program that asks the user to enter five test scores. The program should display a letter grade for each score and the average test score. In addition to the main method, write the following methods in the program:
• calcAverage – This method should accept five test scores as arguments and return the average of the scores.
• determineGrade – This method should accept a test score as an argument and return a letter grade for the score, based on the following grade scale A=100-90 , B=89-80, C=79-70, D=69-60, F= below 60.
Thanks!!