Question: Create pseudocode and C++ code for a program that allows a user to enter 12 numbers. The numbers are to be stored in an array.
Create pseudocode and C++ code for a program that allows a user to enter 12 numbers. The numbers are to be stored in an array. After the numbers have been entered (and stored) the program will display the all the numbers as well as the largest number and the smallest number. Do not use "break;".
You will have 5 functions in this program:
int main()
void description()
void displayArray(int numbers[], int size)
int findLargest(int numbers[], int size)
int findSmallest(int numbers[], int size)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
