Average Hints (While Loop)
- The program must "remember" three items (implying a need for three variables)
- The current score just entered by the user
- The count of how many scores have been entered
- The current sum or total of all of the scores entered so far
- When using a while loop, the test variable must be initialized before entering the loop; therefore
- You must prompt twice: before the loop and inside the loop
- You must read the input twice: before the loop and inside the loop
- You must increment the count inside the while loop
- You must add the current score to the sum inside the while loop
- Print the average score following the loop (be careful of integer division)