| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 141576 | 余建成 | 12输出3的倍数 | C++ | Compile Error | 0 MS | 0 KB | 154 | 2025-12-27 12:22:00 |
#include<iostream> using manespace std; int main() { int a; for(a=3;a<=100;a+=3) { cout<<a<<" "; } return 0; }
Main.cc:2:8: error: expected nested-name-specifier before 'manespace'
using manespace std;
^
Main.cc: In function 'int main()':
Main.cc:8:10: error: 'cout' was not declared in this scope
cout<