- 3
Alguien me ayuda a hacer el ejercicio de convertidor de tiempo de java del primer curso.
2 Réponses
0
It is just printing the output of days*24*60*60.
0
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
System.out.println (days*24*60*60);
}
}