Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
4895 | zhengxitong | 时分秒转换 | C++ | 解答错误 | 0 | 0 MS | 248 KB | 156 | 2020-07-25 12:36:00 |
#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; }