How can I solve this question? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

How can I solve this question?

You need a program to convert days to seconds. The given code takes the amount of days as input. Complete the code to convert it to seconds and output the result. Sample Input: 12 Sample Output: 1036800

1st Mar 2021, 12:57 AM
MARYAM ALKHAYYAT
MARYAM ALKHAYYAT - avatar
1 Answer
+ 5
one day = 24 hours one hour = 60 minutes one minutes = 60 seconds so you just need to print variable_name_wich_hold_days*24*60*60
1st Mar 2021, 1:06 AM
visph
visph - avatar