akosiraff

Download Lab6 C/C++ Answer

Mar 16th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1.  
  2. Download: https://solutionzip.com/downloads/lab6/
  3. 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 taught in class.Test your program with different input files.
  4. Download: https://solutionzip.com/downloads/lab6/
Add Comment
Please, Sign In to add comment