| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 146866 | 王晏林 | 15求n!>m | C++ | Compile Error | 0 MS | 0 KB | 154 | 2026-02-01 10:39:35 |
#include<iostream> using namespace std; int main() { int n,m,j=1; cin>>m; n=1; while(j<m){ n++; j*=n; } cout<<j return 0; }
Main.cc: In function 'int main()':
Main.cc:13:5: error: expected ';' before 'return'
return 0;
^