| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 146555 | 余建成 | 15求n!>m | C++ | Compile Error | 0 MS | 0 KB | 83 | 2026-01-29 12:25:45 |
#include<iostream> using namespace std; int main() { int n,m return 0; }
Main.cc: In function 'int main()':
Main.cc:6:5: error: expected initializer before 'return'
return 0;
^
Main.cc:5:6: warning: unused variable 'n' [-Wunused-variable]
int n,m
^