| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 153679 | 高梓晴 | 输出信息 | C++ | Compile Error | 0 MS | 0 KB | 108 | 2026-05-23 17:43:55 |
#clude<bits/stdc++.h> using namesspace std; int main() { cout<<"This a C program."; return 0 }
Main.cc:1:2: error: invalid preprocessing directive #clude
#clude
^
Main.cc:2:7: error: expected nested-name-specifier before 'namesspace'
using namesspace std;
^
Main.cc: In function 'int main()':
Main.cc:5:5: error: 'cout' was not declared in this scope
cout<<"This a C program.";
^
Main.cc:7:1: error: expected ';' before '}' token
}
^