Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
4958 zhengxitong 时分秒转换 C++ 通过 100 0 MS 252 KB 168 2020-07-26 10:09:40

Tests(2/2):


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


测评信息: