Question: Write a C++ program for the following For this exercise you will read in student names and test scores into two arrays: an array of

Write a C++ program for the following

For this exercise you will read in student names and test scores into two arrays: an array of strings for the names and an array of integers for the scores. You will write a program which sorts the scores and displays the scores from highest to lowest and the student's name who received the grade. Please use one of the sorting algorithms discussed in class. Do not use std::sort. Extra Credit: implement the sort using either the Quick Sort algorithm, Merge Sort algorithm or with any advanced sorting algorithm with an average case runtime of ?(n log2n).

Sample::

How many students took the exam? 3

Student #1 Name: tom

Student #1 Score: 84

Student #2 Name: jerry

Student #2 Score: 96
Student #3 Name: kitty


Student #3 Score: 51
RESULTS:
jerry

Step by Step Solution

3.39 Rating (152 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

To create a C program that reads student names and scores into arrays sorts them and displays the results we will follow these steps Step 1 Program Se... View full answer

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 Programming Questions!