0
800 minute in hour. hour write in 1st line and remains minute in 2nd line
Please help me
6 Réponses
+ 2
I guess your question is to make 888 minutes in hours not 800
you can try:
print(888//60)
print(888%60)
+ 1
Your output
13
20
Expected output
14
48
0
you can use modulo and the rest of division :
print(800//60)
print(800%60)
0
I do that but answer is wrong
0
what is the error message you get?
0
Do you want 800 minutes in hours and the rest in minutes right?