| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 152523 | 鸡哥 | 03输出字符序号 | C++ | Compile Error | 0 MS | 0 KB | 98 | 2026-04-26 15:01:26 |
#include<bits/stdc++.h> using namespace std; int main(){ int '+'; cout<<+; return 0; }
Main.cc: In function 'int main()':
Main.cc:4:6: error: expected unqualified-id before '+'
int '+';
^
Main.cc:6:9: error: expected primary-expression before ';' token
cout<<+;
^