Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
1610 | 张曦元 | 时分秒转换 | C++ | 通过 | 100 | 0 MS | 252 KB | 269 | 2019-10-14 19:46:56 |
#include <iostream> #include <string> using namespace std; int main() { int s; cin>>s; int hour,minute,second; hour=s/(60*60); minute=(s-hour*60*60)/60; second=s-hour*60*60-minute*60; cout<<hour<<":"<<minute<<":"<<second<<endl; }