Question: C++ program, please comment it out as much as possible. Thank you 1. A K-12 science and engineering competition has 5 judges, each of whom
C++ program, please comment it out as much as possible. Thank you

1. A K-12 science and engineering competition has 5 judges, each of whom awards a score between 0 and 10 to each project. Fractional scores, such as 8.3, are allowed. A projects final score is determined by dropping the highest and lowest score received, then averaging the 3 remaining scores. Write a program that uses this method to calculate a contestants score. It should include the following functions: a) void getJudgeData) should ask the user for a judges score, store it in a reference parameter variable, and validate it. This function should be called by main once for each of the 5 judges. b) void calcScore) should calculate and display the average of the 3 scores that remain after dropping the highest and lowest scores the performer received. This function should be called just once by main, and should be passed the 5 scores. The last two functions, described below, should be called by calcScore, who uses the returned information to determine which of the scores to drop. c) int findLowest should find and return the lowest of the 5 scores passed to it. d) int findHighest ) should find and return the highest of the 5 scores passed to it. Input Validation: Do not accept judge scores lower than 0 or higher than 10. Ex Enter score between 0 and 10: 8.4 Enter score between 0 and 10: 3.9 Enter score between 0 and 10: 5.6 Enter score between 0 and 10: 5.9 Enter score between O and 10: 8.0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
