Time Converter | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Time Converter

Need help with this time converter project, please help 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 Explanation: 12 days are 12*24 = 288 hours, which are 288*60 = 17280 minutes, which are 17280*60 = 1036800 seconds. import java.util.Scanner; public class Program { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int days = scanner.nextInt(); //your code goes here } }

10th Dec 2021, 5:34 AM
peter
2 Answers
+ 2
Hey dude Even after completing 87% of learning of Java how can't you do this. But to help you System.out.print(days*24*60*60);
10th Dec 2021, 5:38 AM
Ananya | Inactive |
Ananya | Inactive | - avatar
0
Thanks
10th Dec 2021, 5:41 AM
peter