46.5k views
0 votes
Define a class for a type called CounterType. An object of this type is used to count things, so it records a count that is a nonnegative whole number. Include a mutator function that sets the counter to a count given as an argument. Include member functions to increase the count by one and to decrease the count by one. Be sure that no member function allows the value of the counter to become negative. Also, include a member function that returns the current count value and one that outputs the count. Embed your class definition in a test program.

User TheNoob
by
6.7k points

1 Answer

4 votes

Answer:

Answer is given in the attached document.

Step-by-step explanation:

The explanation is given in the attached document.

Define a class for a type called CounterType. An object of this type is used to count-example-1
User Diemo
by
5.8k points