Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
101355 | 朱子相 | 简单计算 | C++ | Compile Error | 0 MS | 0 KB | 55 | 2024-12-15 10:27:56 |
#include<bits/stdc++.h> int main(){ cout<<120; }
Main.cc: In function 'int main()': Main.cc:3:5: error: 'cout' was not declared in this scope cout<<120; ^ Main.cc:3:5: note: suggested alternative: In file included from /usr/include/x86_64-linux-gnu/c++/5/bits/stdc++.h:74:0, from Main.cc:1: /usr/include/c++/5/iostream:61:18: note: 'std::cout' extern ostream cout; /// Linked to standard output ^