javait
sharing java programming experience
BlogJava
首页
新随笔
联系
聚合
管理
随笔 - 5 文章 - 0 trackbacks - 0
<
2009年3月
>
日
一
二
三
四
五
六
22
23
24
25
26
27
28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
常用链接
我的随笔
我的评论
我的参与
留言簿
(1)
给我留言
查看公开留言
查看私人留言
随笔分类
tc_exercise(5)
随笔档案
2009年4月 (2)
2009年3月 (3)
文章分类
tc_exercise
搜索
最新评论
阅读排行榜
1. SRM 149 FormatAmt(116)
2. SRM 148 DivisorDigits(116)
3. SRM 147 CCipher(112)
4. SRM 145 ImageDithering(87)
5. SRM 144 Time(81)
评论排行榜
1. SRM 147 CCipher(0)
2. SRM 149 FormatAmt(0)
3. SRM 148 DivisorDigits(0)
4. SRM 145 ImageDithering(0)
5. SRM 144 Time(0)
SRM 144 Time
1
public
class
Time
{
2
public
String whatTime(
int
seconds)
{
3
int
h
=
seconds
/
3600
;
4
int
m
=
seconds
/
60
%
60
;
5
int
s
=
seconds
%
60
;
6
return
(h
+
"
:
"
+
m
+
"
:
"
+
s);
7
}
8
}
posted on 2009-03-21 10:17
edwing
阅读(81)
评论(0)
编辑
收藏
所属分类:
tc_exercise
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
相关文章:
SRM 147 CCipher
SRM 149 FormatAmt
SRM 148 DivisorDigits
SRM 145 ImageDithering
SRM 144 Time