CJCoding With Joseph

Convert Seconds to Minutes and Seconds

Read a total number of seconds (an integer) from input and print how many whole minutes and leftover seconds it represents, in this exact format. For example, if the input is:

125

print:

2 min 5 sec

Use integer division / and the modulo operator % with 60.

Expected Output:

2 min 5 sec
Topics:
User Input
๐Ÿ“ฅ Auto-Input:
125
This input is automatically fed to your program's stdin
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.