Question: Write a function void printStats ( const vector &v ) that prints the minimum, mean, and maximum of the values in the given vector separated
Write a function void printStatsconst vector &v that prints the
minimum, mean, and maximum of the values in the given vector separated by
spaces. For example,
vector v ;
printStatsv;
should print
If the given vector is empty, your function should print Empty vector.
Note that passing the vector v by reference as opposed to by value is
usually preferred. This saves both time and space. When the vector will not
be changed by the function, include the keyword const as we have done here.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
