参考代码:
import java.util.Scanner; public class Main { public static void main(String args[]) { Scanner ss=new Scanner(System.in); int s=ss.nextInt(); Time t=new Time(); int a=t.hour(s); int b=t.minute(s); int c=t.second(s); System.out.print(a+":"+b+":"+c); } } class Time { int hour(int a) { return a/3600; } int minute(int b) { return (b-b/3600*3600)/60; } int second(int c) { return c-c/3600*3600-(c-c/3600*3600)/60*60; } }
0.0分
0 人评分
字符逆序 (C语言代码)浏览:706 |
1124题解浏览:630 |
Tom数 (C语言代码)浏览:581 |
The 3n + 1 problem (C语言代码)浏览:550 |
链表数据求和操作 (C语言代码)浏览:1035 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:751 |
C语言程序设计教程(第三版)课后习题10.1 (C++代码)浏览:529 |
剔除相关数 (C语言代码)浏览:1156 |
整数分类 oj上总是wrong answer浏览:687 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:552 |