C++ Functions
There are many reasons why one would want to know the minimum
and the maximum of a series of values: fight control, range
determinate, even in academia, professors often seek the
distribution of grades on homework, exams, and class grades.
For this lab, you will write a program which will include a
minimum function and a maximum function. Both functions should take
in three values. The minimum function should return the minimum of
the three values and the...