C++ PROGRAMMING QUESTION:
Create a 5×5 matrix of int values as shown below. Write aprogram that finds the minimum, maximum, and average value of allvalues in the matrix. Create a function for each value that iscomputed (max, min, avg). Print out the results (limit the averageto two decimal points!).
Matrix: [ 7, 2, 10, 3, 6],
[ 1, 12, 2, 0, 20],
[ 3,14,19, 5, 4],
[ 6, 0, 17, 18, 8],
[ 1, 13, 10, 9, 11];
Example: Min: 0, Max: 20, Avg: 8.04
Expert Answer
An answer will be send to you shortly. . . . .