对于以下代码:
import java.util.*;
public class Convert
{
public static void main(String[] args)
{
Scanner keyboard = new Scanner(System.in);
System.out.print("Enter the duration of the event in seconds: ");
int duration = keyboard.nextInt();
int days;
int hours;
int minutes;
int seconds;
我需要的是,如果用户输入 - <60 秒,它将添加到秒 -> 60 秒,它将添加到分钟 - > 3600 秒,它将添加到小时 - > 86400 秒,它将添加到天。
例如,如果用户输入值 3750 (= 3600 + 120 + 30),输出应该是:
活动持续0天1小时2分30秒