Question: 22) Create a function object class which will be used (perhaps in a for loop) to calculate and return the maximum value of a set

22) Create a function object class which will be used (perhaps in a for loop) to calculate and return the maximum value of a set of [numeric] data. (Hint: you may want more than one operator() in this class.) class Maximum For example, here's how you might use your class to find the largest of a set of test scores. double scores [MAX] = { 42, 55.5, 82, 74.5, 62 }; size_t num-scores = 5 Maximum max; max.reset (scores[o) for (size_t s=1; s
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
