High and Low Project Design a modular program which asks the user to enter a list of numbers. The numbers must be stored in an array. The program then finds the index of the first occurrence of the...


High and Low Project


Design a
modular
program which asks the user to enter a list of numbers. The numbers must be stored in an array. The program then finds the index of the
first
occurrence of the smallest element in the array and the
last
occurrence of the largest element in the array. The program displays the position and value of each of these items.


Rather than processing items as they are read in as we have done so far, this program is asking you to read all the data into memory and then do the processing. Your design should contain a minimum of two functions. The first function takes as input the array and returns the indexof the location of the
first
occurrence of the smallest item. The second function takes the array as input and returns the
index
of the location of the
last
occurrence of the largest item in the array. Your functions do not need to return the highest and lowest data values since having the
index
is all that is needed to access the values. Do not display the highest and lowest values inside thefunctions. Use the index returned from the functions to display the values in the main function.



C++



Jun 05, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here