public class Consult{
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
System.out.println("请输入秒数:");
int x = sc.nextInt();
//分别定义初始化变量天、时、分、秒。
int t = 0, h = 0, f = 0, m = 0;
//if循环并判断时分秒。
if (x >= 60) {
f = x / 60;
m = x % 60;
if (f >= 60) {
h = f / 60;
f = f % 60;
if (h >= 24) {
t = h / 24;
h = h % 24;
}
}
} else {
//若输入秒数不足60,则直接输出
m = x;
}
//只有不为0的数据,才可以输出“天、小时、分、秒”这些汉字。
if (t != 0)
System.out.print(t + "天");
if (h != 0)
System.out.print(h + "小时");
if (f != 0)
System.out.print(f + "分");
if (m != 0)
System.out.print(m + "秒");
}
}
|