Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
5152 吴乐涵 时分秒转换 C++ 通过 100 0 MS 248 KB 171 2020-07-27 20:35:15

Tests(2/2):


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


测评信息: