题解 | #时间转换#
时间转换
http://www.nowcoder.com/practice/c4ae7bcac7f9491b8be82ee516a94899
#include<stdio.h> int main() { int h,m,s;//h小时/m分钟/s秒 int b=60;
scanf("%d",&s);
h=s/(b*b);
m=(s-h*(b*b))/b;
s=(s-h*b*b-m*b);
printf("%d %d %d",h,m,s);
return 0;
}