题目描述
某总时间为 𝑛n 秒。请将它转换成以小时、分钟和秒组成的时间格式,中间以冒号 :
分割。
例如 𝑛=3600n=3600,输出 1:0:0
,因为 36003600 秒恰好为一小时。
输入格式
- 单个整数:表示 𝑛n。
输出格式
- 三个整数,用冒号
:
分隔。第一个数表示小时,第二个数表示分钟,第三个数表示秒数。
数据范围
0≤𝑛≤1,000,000,0000≤n≤1,000,000,000。
样例数据
输入:
100
输出:
0:1:40
输入:
3601
输出:
1:0:1
输入:
35999999
输出:
9999:59:59
详见代码:
#include<bits/stdc++.h>
using namespace std;
int main()
{
int h,m,s,total;
scanf("%d",&total);
h=total/3600;
m=(total%3600)/60;
s=(total%3600)%60;
printf("%d:%d:%d",h,m,s);
return 0;
}