Well theres not actually a link to the website. It's all password secure and everything so I'll copy and paste whats supposed to happen.
Write an algorithm for a
Java program that reads a football player�s name and his total yards for 6 games. The program should then compute the average yards for each player. After you have calculated the player�s average, assign an appropriate rating to each player. The rating scale is as follows � (based on the average yards):
More then 100 - A
75 � 100 � B
50 � 74 � C
Less then 50 � D
Your program must use the following methods:
1. A void method, CalculateAverage, to determine the average yards for each player. Use a loop to read and sum the six total yard values. This method DOES NOT output the average yards. The value MUST be returned and output in void main.
2. A value-returning method, CalculateRating, to determine and return the appropriate rating for each player. This method DOES NOT output the rating. It MUST be done in void main.
Your program must also output the team average after you output all the player�s average yards.
Test your program on the following data. Read the data form a file and output the results to a file. DO NOT use any global variables. Use the appropriate parameters to pass values to and from the methods.
Ward 100 154 98 65 35 115
Burris 89 65 87 104 115 132
Harris 54 21 55 87 100 54
Bettis 3 5 8 54 15 25
Staley 87 54 98 105 104 156
Randle 54 87 54 98 65 105
Maddox 156 104 0 0 0 0
Roth 0 0 254 278 254 189
Holmes 104 87 98 114 105 147
Sample Output: The output should be of the following form. Fill in the last two columns and the last line showing the team average.
Player Game1 Game2 Game3 Game4 Game5 Game6 Average Rating
Ward 100 154 98 65 35 115
Burris 89 65 87 104 115 132
Harris 54 21 55 87 100 54
Bettis 3 5 8 54 15 25
Staley 87 54 98 105 104 156
Randle 54 87 54 98 65 105
Maddox 156 104 0 0 0 0
Roth 0 0 254 278 254 189
Holmes 104 87 98 114 105 147
Team Average =