โ Back to User Input
Question 359
Convert Seconds to Minutes and Seconds
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
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.