Using iterators and containers!
In this project, you will create a database of high scores that are stored using a vector. Create a class for HiScores. Keep track of Name, Score, and Date of the high score. Have a main menu that allows the user to:
1) Add a Hi-Score
2) List Hi-Scores by score in descending order (highest to lowest)
3) Quit
Make sure you do error-handling for invalid scores and menu options. The high scores that make the list should be positive numbers between 100 and 10,000.