The problem
Write a program that asks the user to enter in test scores. The program should display each test score as well as the average
Breaking it down
Create a data structure that will hold test scores
Write a method that will average the values
Output test scores and average
Output
Unit tests
Level Up
- Limit the number of total test scores (could someone really take a million tests?)
- Format the test average
- While the averageScore works, what other library could you resuse?
- What would a do/while loop allow you to remove?
- is there a better way to output the list?