+ 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 } }
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);
0
Thanks