Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
101451 | 李明秦 | 05拆分时间 | C++ | Wrong Answer | 0 MS | 268 KB | 202 | 2024-12-15 12:34:47 |
#include<iostream> using namespace std; int main(){ int n,h,m,s; cin>>n; h=n/3600; m=(n-h*3600)/60; s=n%60; cout<<h<<"小时"<<m<<"分"<<s<<"秒"<<endl; return 0; }
------Input------
602
------Answer-----
0 10 2
------Your output-----
0小时10分2秒