| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 133031 | 肖声晖 | 03ASCLL码转字符 | C++ | Compile Error | 0 MS | 0 KB | 109 | 2025-10-13 17:23:12 |
#include <iostream> using namespace std; int main(){ char 65; int 65; 65=A; cout<<65 }
Main.cc: In function 'int main()':
Main.cc:4:10: error: expected unqualified-id before numeric constant
char 65;
^
Main.cc:5:9: error: expected unqualified-id before numeric constant
int 65;
^
Main.cc:6:8: error: 'A' was not declared in this scope
65=A;
^
Main.cc:8:1: error: expected ';' before '}' token
}
^