Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
101446 | 李明秦 | 05拆分时间 | C++ | Wrong Answer | 0 MS | 272 KB | 209 | 2024-12-15 12:33:44 |
#include<iostream> using namespace std; int main(){ int n,h,m,s;//h小时 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秒