Programming Assignment Numbers Write a C program that asks t
Programming Assignment: Numbers Write a C++ program that asks the user to enter five real numbers and then stores the numbers in an array as they are read from the keyboard. Your program should then call functions that calculate the maximum, the minimum, the sum, and the average of the numbers. Your program should also display these calculated values on the screen. Input Your program should ask the user to enter five real numbers. The numbers can be negative, positive, or zero. Use a for loop to read each number into an array element. NOTE: If the user enters nonnumeric characters, your program will generate an error. For this assignment, however, you do not have to test for valid user input.
Solution
#include