给你的是多少毫秒,让你转化为hh:mm:ss的格式,位数不够添加前导0
#include <iostream>
using namespace std;
int main()
{
long long int t;
cin>>t;
t/=1000;
int ss=t%60;
t/=60;
int mm=t%60;
t/=60;
int hh=t%24;
printf("%02d:%02d:%02d",hh,mm,ss);//添加前导0的输出方式
return 0;
}