Question: Write a C++ program to search a 2D array and print the first and last names of all students that have scored above a value
Write a C++ program to search a 2D array and print the first and last names of all students that have scored above a value entered by the user.
the array consist of the following columns:
ID first-name last-name total-score
the array currently holds the information of 5 students but can hold up to 100 students.
For example, if your array consist of the following data:
111 Tom Jones 80
222 Jack Williams 70
333 Sarah Jones 100
444 Judy Thomson 99
555 Sandra Will 65
and we want the names of all students who scored 70 and above, your program will list:
Tom Jones
Jack Williams
Sarah Jones
Judy Thomson
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
