Maximum Score Hints (While Loop)
- The program must "remember" two items (implying a need for two variables)
- The current score just entered by the user
- The largest or maximum score entered 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
- An if statement is required to compare the currently entered score to the current maximum score
- Print the maximum score following the loop