This task explores defining a relatively simple C++ class.
The class you will implement is called Time. It represents all possible times in a 24-hour
period, including hours, minutes and seconds. An immediate representation issue is how to
handle morning (am) and afternoon (pm) times. We could have a separate bool indicating
whether the time … Read more