Just a nifty programming challenge for you guys. If you think you figured it out, post it on the comments!
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 non-negative 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
and run sufficient tests to verify it all works correctly.
|
//This is for you guys who like a challenge to figure out.
|