Consider the following class Time, which represents a time using three ints for hour, minute and second:
class Time { private: int hour; int min; int sec; public: Time() { hour = min = sec = 0; } Time(int h, int m, int s) { hour = h; min = m; sec = s; } bool operator==(Time&); Time operator++(); void displayTime(); };
Time objects use a 24 hour clock. You may assume that all objects of class Time are valid, i.e. hour is between 0 and 23, inclusive; and both min and sec are between 0 and 59, inclusive.
Write C++ code to do the following:
1. Implement the two overloaded operators for the class Time above:
2. Implement displayTime() for the class Time above. It should output the object's time in format hour:minute:second. You don't need to make the formatting pretty.
3. Write a simple main() function which demonstrates that your class works properly by doing the following:
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here