Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
101459 | 向睿杰 | 05拆分时间 | C++ | Compile Error | 0 MS | 0 KB | 214 | 2024-12-15 12:38:12 |
#include<iostream> #include<cstdio> 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<<; return 0; }
Main.cc: In function 'int main()': Main.cc:10:30: error: expected primary-expression before ';' token cout<