Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

in C++ 1. Test Scores #1 Write a program that dynamically allocates an array large enough to hold a user-dened number of test scores. Once

in C++ 1. Test Scores #1 Write a program that dynamically allocates an array large enough to hold a user-dened 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. Input Validation: Do not accept negative numbers for test scores.

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Essentials of Database Management

Authors: Jeffrey A. Hoffer, Heikki Topi, Ramesh Venkataraman

1st edition

133405680, 9780133547702 , 978-0133405682

More Books

Students also viewed these Databases questions