Write a program that asks the user for a file name. Assume the file contain a se

Write a program that asks the user for a file name. Assume the file contain a series of numbers, each written on a separate line. The program should read the contents of the file into an array then display the following data:
The lowest number in the array
The highest number in the array
The total of the numbers in the array
The average of the numbers in the array
To test the program, you can download the numbers.txt file
Requirements:
Don’t hard-code your program to only work with the sample numbers.txt file
Don’t hard-code your program to only process the number of number in the sample file
Write a separate function for each of the statistics above, the functions should take an array as input and display the statistic
All standard submissions details and results screen captures required
Numbers are in the picture
Pre-lab:
Do analysis and design, write an algorithm/pseudo code as a numbered list of steps with no programming jargon, your algorithm should be understandable to any developer, not just a C++ developer. Therefore don’t use terms like cout statement, call a function , etc. Logical terms like for and while, although they are programming concepts, are general concepts math/logical terms and therefore appropriate for writing algorithms and pseudocode.