Question: Write a C++ program (with two arrays) to: 1. Read up to 100 student numbers and test scores from the keyboard (provide a method

Write a C++ program (with two arrays) to: 1. Read up to

  

Write a C++ program (with two arrays) to: 1. Read up to 100 student numbers and test scores from the keyboard (provide a method to end the input before reaching 100 records); 2. Display the student numbers and scores in a two column format on the screen; 3. Sort the list according to test scores; 2. Display the student numbers and scores in a two column format on the screen. For example: The list entered: 101 89 102 95 103 76 The list sorted by test scores: 103 76 101 89 102 95

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Certainly Heres an example C program that meets your requirements cpp include iostream include algorithm const int MAXSTUDENTS 100 Function to read st... 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!