编写一个程序,从标准输入中读取由小时、分钟和秒组成的时间。用户还可以指定时钟格式(12 小时制,AM/PM 或 24 小时制)。确保对指示的值进行完整性检查(例如,分钟数介于 0 和 59 之间)。
这是我到目前为止所拥有的:
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter the hours: ");
int hours = scanner.nextInt();
System.out.print("Enter the minutes: ");
int minutes = scanner.nextInt();
System.out.print("Enter the seconds: ");
int seconds = scanner.nextInt();
if (seconds >= 0 && seconds <= 60) {
minutes = minutes + 1;
if (minutes >= 60) {
hours = hours + 1;
minutes = 00;
if (hours >= 24) {
hours = 00;
}
}
}
System.out.println(seconds + ":" + minutes + ":" + hours);
}
富国沪深
米脂
收到一只叮咚
相关分类