Write a full class definition for a class named Averager, and containing the following members: An data member named sum of type integer. An data member named count of type integer.

C++

LANGUAGE: C++ CHALLENGE: Write a full class definition for a class named Averager, and containing the following members: 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 to 0. A function named…

Read More