Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
5127 wocao 时分秒转换 C++ 通过 100 0 MS 256 KB 171 2020-07-27 17:30:03

Tests(2/2):


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


测评信息: