目录
题目链接
代码
题目链接
1.时间显示 - 蓝桥云课 (lanqiao.cn)
代码
#include <bits/stdc++.h>
using namespace std;
int main() {
long long x;
cin>>x;
int h,m,s;
x = x / 1000 % (3600*24); // 毫秒化秒,并且保留最后一天的时间
h = x / 3600; //求得最后一天的小时
x = x % 3600;
m = x / 60; //分钟
s = x % 60; //秒数
printf("%02d:%02d:%02d",h,m,s);
return 0;
}