Home /
Expert Answers /
Computer Science /
write-a-c-program-for-the-below-scenario-it-is-important-to-reflect-the-code-as-per-the-output-give-pa922
(Solved): Write a C Program for the below scenario. It is important to reflect the code as per the output give ...
Write a C Program for the below scenario. It is important to reflect the code as per the output given.
In this assessment, you will create a program that asks the user to enter their golf scores for a 9hole course. You will create a function that will pass the array to the definition and compute and display their total so that they can determine if they won the match at the end of the game. Instructions Follow these instructions to complete your flowchart and program: 1. Write a flowchart and \( \mathrm{C} \) code for a program that does the following: - Declare an array that will store 9 values - Use a for() statement to store user entered scores for all 9- holes - Create a function and pass the array into the definition of the function to compute the total - Use an accumulating total statement to compute the total score - Display the overall total to the output screen so that the golfer can see if he won.
Here is what the output looks like. III CilUsers\dcamilOneDrivelDesktop\U4PAPassingAnArraytofunctionCompute... Enter your score for hole 1: 2 Enter your score for hole 2: 3 Enter your score for hole 3 : 5 Enter your score for hole 4: 1 Enter your score for hole 5 : 2 Enter your score for hole 6: 3 Enter your score for hole 7: 4 Enter your score for hole 8 : 3 Enter your score for hole 9: 2 Your total score for this game is: 25 Please come back and play again! Process exited after \( 11.33 \) seconds with return value \( \theta \) Press any key to continue...