164k views
1 vote
You are the coach for the basketball team, and the season has just come to the end.

You decide to write the program that will store the score in every game in the season. There are 5 games in the season, so you need to use a dynamic array for every game. With every upcoming game, your team got better in scoring the points,
e.g. game 1=21 pts, game 2=32 pts, …., game 5=65 pts.
Then you received an update that in one of the games, you received additional points!
So you need to check the score for that game by asking for user input, add additional points to that game, display the updated score for every game, and lastly, calculate the total score for the season.
Functions explained:
- void alterGameScore(int pArr], int gameNumber) - adds k points ( k being user input taken inside the function, not as a parameter) to game n;
- int totalScore(int pArr[, int gameMAX) - returns all added points in dynamic array;
- void printScores(int pArr[], int gameMAX) - prints all updated points for all games. You are provided with some template code as a starting point.

1 Answer

3 votes

Final answer:

To store scores and handle updates in a basketball season using dynamic arrays in a program, you can use the provided functions alterGameScore, totalScore, and printScores.

Step-by-step explanation:

To store the scores in each game and handle the update, you can use dynamic arrays. The program can prompt the user for the score of the specific game and add it to the respective dynamic array using the alterGameScore function. The alterGameScore function would take the dynamic array and game number as parameters, and within the function, it can ask the user for the additional points and add them to the specific game array.

To display the updated scores, you can use the printScores function, which takes the dynamic array and the total number of games as parameters. This function can loop through the array and print the scores for each game. Finally, to calculate the total score for the season, you can use the totalScore function, which takes the dynamic array and the total number of games as parameters. This function can loop through the array and accumulate the scores for each game, returning the total score.

User Kamni
by
8.1k points