Question: C++ Practice 4: High Score Manager Chapter Prob. 1 Write a program that manages a list of up to 10 players and their high scores

C++
 C++ Practice 4: High Score Manager Chapter Prob. 1 Write a
program that manages a list of up to 10 players and their

Practice 4: High Score Manager Chapter Prob. 1 Write a program that manages a list of up to 10 players and their high scores in the computer's memory (not on disk as in Programming Project 18). Use two arrays to manage the list. One array should store the player's name(string) and the other array should store the player's high score(int). Use the index of the arrays to correlate the name with the score. In the next lecture you will learn a different way to organize related data by putting them into a structure or class. Practice 4: High Score Manager (cont.) Your program should support the following features: - a. Add a new player and score (up to 10 players) and count the number of players. - b. Print all players and their score to the screen c. Allow the user to enter a player name and output that player's score or a message if the player's name has not been entered - d. Allow the user to enter a player name and remove the player from the list. Remove the player by swapping the player in the end to the index of the player to remove. Create a menu system that allows the user to select which option to invoke

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!