Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a program that calculates the average of a group of test scores, where the lowest score in the group is dropped. For example: if
Write a program that calculates the average of a group of test scores, where the lowest score in the group is dropped. For example: if the user enters the values and the output will be:
INP
After dropping the lowest test score, the test average is
This average is calculated by dropping the lowest score which is and dividing the sum of the remaining four values and which is by
It should use the following functions:
An int function getScore with no parameters, to ask the user for a single test score, validate it and return the score. The function should be called by the main function once for each of the five scores to be entered. Do not accept test scores lower than or higher than
An int function findLowest that is passed the five test scores and then finds and returns the lowest of the five scores passed to it It is called by function calcAverage, to determine which of the five scores to drop.
A float function calcAverage that is passed the five test scores and then calculates and returns the average of the four highest scores.
A void function displayoutput that is passed the average score; it then displays the average of the test scores. Display two digits after the decimal point.
You must submit the four functions you have developed as well as output using the following sets of input data:
Submit the program and the output.C program
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