Question
C++ Write a program that reads a text file containing a number of test scores into an array and calculates the average and median of
C++
Write a program that reads a text file containing a number of test scores into an array and calculates the average and median of the scores. Define a constant to hold the array size and use it to declare the array that holds the scores.
const int MAX_SCORES = 40;
You will need to implement the following functions:
int getScores (int scores[], int array_size, int& num_scores);
This function should open the file lab6.txt and read the scores into an array. The function will return SUCCESS if it opens the file successfully and ERROR if the file cannot be open. Define SUCCESS and ERROR as global constants in your program.
array_size is the maximum number of scores that you can read from the file. You need it to make sure you don't overstep the array boundaries. Even if the file has more than array_size scores, you can't read them all. The limit is array_size.
num_scores will have the actual number of scores read from the file. You need it in case the actual number of scores found in the input file is less than the array size.
double calcAverage (int scores[], int num_scores);
This function should calculate and return the average of the scores passed as parameters.
double calcMedian (int scores[], int num_scores);
This function should return the median value in the array. To get the median, the array must be sorted first.
Implement the SelectionSort function
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