CJCoding With Joseph

Clock Display Class

Create a class Clock whose constructor stores hours and minutes, and a Display() method that returns the time as H:MM where the minutes are always shown with two digits (a leading zero when needed). Do not write a Main method.

For 9 hours and 5 minutes the program prints:
9:05

Expected Output:

9:05
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.