Write the implementation (.cpp file) of the  Averager class of the previous exercise. The full specification of the class is: An data member named  sum of type integer.

C++

LANGUAGE: C++ CHALLENGE: Write the implementation (.cpp file) of the Averager class of the previous exercise. The full specification of the class is: An data member named  sum of type integer. An data member named  count of type integer. A constructor with no parameters. The constructor initializes the data members sum and the data member  count…

Read More