CJCoding With Joseph
15per day

Timer Class

Create a class Timer that starts at 0 seconds, with a Tick(int seconds) method that adds time and a Format() method that returns the elapsed time as "M:SS" (minutes and zero-padded seconds). Do NOT write a Main method.

After ticking 75 seconds, Format() returns '1:15'.

Expected Output:

1:15
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.