参考代码:
import java.util.Scanner; public class Main11 { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub /*给定一个以秒为单位的时间t,要求用 “< H> :< M> :< S> ” * 的格式来表示这个时间。< H> 表示时间,< M> 表示分钟, * 而< S> 表示秒,它们都是整数且没有前导的“0”。例如,若t=0, * 则应输出是“0:0:0”;若t=3661,则输出“1:1:1”。 */ Scanner scanner=new Scanner(System.in); int t=scanner.nextInt(); if (t==0) { System.out.println("0:0:0"); } if (t<=60&&t>0) { System.out.println("0:"+t/60+":"+t%60); } if (t<3600&&t>60) { System.out.println("0:"+t/60+":"+t%60); } if (t>=3600) { System.out.println(t/3600+":"+(t%3600)/60+":"+(t%3600)%60); } } }
0.0分
2 人评分