Question: C++ Write a program that dynamically allocates an array large enough to hold a user-de?ned number of test scores. Once all the scores are entered,

C++

Write a program that dynamically allocates an array large enough to hold a user-de?ned number of test scores. Once all the scores are entered, the array should be passed to a function that sorts them in ascending order. Another function should be called that calculates the average score. The program should display the sorted list of scores and averages with appropriate headings. Use pointer notation rather than array notation whenever possible.

Out put has to be the same:

Test Case1: How many test scores do you have? 5 Test Score #1: 78 Test Score #2: -50 Value must be one or greater: 90 Test Score #3: 99 Test Score #4: 87 Test Score #5: -8 Value must be one or greater: 89 The numbers in set are: 78 87 89 90 99 Average Score: 88 TEST CASE2: How many test scores do you have? 7 Test Score #1: 90 Test Score #2: 87 Test Score #3: 66 Test Score #4: 34 Test Score #5: 89 Test Score #6: 56 Test Score #7: 88 The numbers in set are: 34 56 66 87 88 89 90 Average Score: 72

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!