Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
88725 | 欧阳俊懿 | 03输出字符序号 | C++ | Compile Error | 0 MS | 0 KB | 70 | 2024-08-20 17:45:56 |
using namespace std; int main() { char t; cin>>t; cout<<(int)t;
Main.cc: In function 'int main()': Main.cc:6:1: error: 'cin' was not declared in this scope cin>>t; ^ Main.cc:7:1: error: 'cout' was not declared in this scope cout<<(int)t; ^ Main.cc:7:13: error: expected '}' at end of input cout<<(int)t; ^