题面
//********** Specification of Sec2HMS **********
int Sec2HMS(int second);
/* PreCondition:
second 是以秒数表示的一段时间,0<=时长<100小时
PostCondition:
返回以HHMMSS形式表示的等长的一段时间,整数中开头的0可忽略,如010010为10010,表示1小时零10秒
*/
int Sec2HMS(int second) { //TODO: your function definition
}
#include <stdio.h>
int main() {
int second;
scanf("%d", &second);
printf("%d\n", Sec2HMS(second));
return 0;
}
输入格式
输出一个整数,表示一个不低于 ,严格小于 小时的时间(单位:秒)。
输出格式
输出转换的结果。省略前导 。
样例
输入
3610
输出
10010