โ Back to Classes
Question 61
TimeOfDay Comparison (operator<)
TimeOfDay Comparison (operator<)
You are sorting times in a daily schedule. Create a class TimeOfDay with two ints: hour (0-23) and minute (0-59). Requirements: 1) Constructor TimeOfDay(int hour, int minute) 2) Overload operator< so earlier times are "less than" later times Do NOT write a main function.
Expected Output:
true false
Topics:
ClassesOperator Overloading
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.