Question
You will be writing a program to score bowling for several players. Your job will be to ask for players and their scores, then add
You will be writing a program to score bowling for several players. Your job will be to ask for players and their scores, then add up their score. When all players have been entered, the user will type "done". Then, your program will tally up the worst and best player and output who won and who lost the game.
1. You must use a vector to store all of the player names. All player names will be a single name.
2. You must use another vector to store the total score for each player. You must calculate the total score for each player after all rolls have been entered.
3. You must use an array to store each roll's value.
4. The number of rolls is variable depending on whether the player threw a strike (knocked down 10 pins in one roll), spare, or neither.
5. You must use a for loop to input the roll values into the array.
6. If the user types "done" before entering any names, output "No players were entered."
7. In the event of a tie, the first player to obtain the best or worst score should be printed.
8. You can assume that the user will input valid scores. You do not need to perform error checking for invalid input.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started