Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
5299 老师 时分秒转换 C++ 通过 100 0 MS 252 KB 170 2020-07-29 10:32:50

Tests(2/2):


#include<bits/stdc++.h> using namespace std; int main(){ int n,s,f; cin>>n; s=n/3600; n-=s*3600; f=n/60; n-=f*60; printf("%d:%d:%d",s,f,n); return 0; }


测评信息: