C++ Using an input file similar to the one below, write a program to determine the highest concentration recorded and the number of days the photochemical oxidant concentration exceeded the standard; display number of days and percentage (based on the number of days per month). Use at least two programmer defined functions.
Sample Input file:
80 83 79 180 190 200 220 220 200 200 198 225 199 183 160 119
162 180 122 121 121 119 80 83 79 119 121 121 122 119
Implementation:
The number of days in the month are determined from input file. The input file can vary in size depending on the month.
Once array is populated, the contents of the array can not be changed.
At least one function must have an array as a parameter.