Modify the previous process to store the scores in an array


Modify the previous process to store the scores in an array. You will need to use either parallel arrays or a two-dimensional array in order to store the score, slope and rating for each entry. In the loop you created in the previous assignment to read the 10 scores, add logic to store the scores in an array. You will need to add validation logic in the loop to ensure that the user only enters acceptable numbers. A score of less than 60 should generate a display of “This score is too low, please enter the correct score.” You shouldn’t count this as an entry or add this score to the array. A score that is greater than 144 should generate a display of “The max score is a double par. I’ll give you a 144 for this round.” This should add a score of 144 to the array and count as an entry. The course Slope must be between 55 and 155. Any entry outside this range needs to generate a display of “This is not an acceptable Slope. Please try again.” You shouldn’t count this as an entry or add this score to the array. The courser Rating must be between 60 and 80. Any entry outside this range needs to generate a display of “This is not an acceptable Rating. Please try again.” You shouldn’t count this as an entry or add this score to the array. You don’t need to change the logic that calculates the handicap and adds it to the total handicap variable. After you have read all 10 scores, stored them in an array(s), calculated all 10 handicaps, added all the handicaps to the handicap total and exited the loop, create a new process to sort the scores in the array. Create a new loop to read the array and display all of the scores in numeric order, lowest to highest. After you exit this loop, you can execute the existing logic to display the average handicap. this is my last module. Program: Module main() Module handicap of a golfer () Display “Please enter your name” Input name Declare Integer Score, course Slope, and course Rating Display “Please enter the Score” Input Score Display “Please enter the course Slope” Input course Slope //as per the formulae (((Score – Rating) * 113) / Slope) Set handicap of a golfer = ((Score- Rating * 113) / Slope) Display “(Score-Rating * 113 / Slope)* Display End Module

Request for Solution File

Ask an Expert for Answer!!
Other Subject: Modify the previous process to store the scores in an array
Reference No:- TGS0598837

Expected delivery within 24 Hours