不是VIP会员,不能显示答案

题目解答

题目:
var
h,m,s,n:longint;
begin
readln(n);
h:=n div 3600;
m:=n div 60 - h*60;
s:=n mod 60;
writeln(h,'h',m,'m',s,'s');
end.
输入:4000
输出:1h6m40s
考点: 0
分析:
解答: (秒转化为时分秒)
评论:
老师: 0