| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 156066 | 蒋一赫 | [在线测评解答教程] A+B Problem | C++ | Compile Error | 0 MS | 0 KB | 144 | 2026-06-20 17:42:52 |
queue<int>q; q.push(1); q.push(2); q.push(3); cout<<q.size()<<endl; q.pop(); q.pop(); cout<<q.size()<<endl;
Main.cc:1:1: error: 'queue' does not name a type
queueq;
^
Main.cc:2:4: error: 'q' does not name a type
q.push(1);
^
Main.cc:3:4: error: 'q' does not name a type
q.push(2);
^
Main.cc:4:4: error: 'q' does not name a type
q.push(3);
^
Main.cc:5:4: error: 'cout' does not name a type
cout<