Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
4914 张熙媛 时分秒转换 C++ 通过 100 0 MS 248 KB 162 2020-07-25 18:09:43

Tests(2/2):


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


测评信息: