| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 131694 | 王润中 | 01简单换行输出 | C++ | Compile Error | 0 MS | 0 KB | 114 | 2025-09-30 21:36:02 |
#include<iostream> using namespace std; int main() { cout<<"123"endl; cout<<"456"; return 0; }
Main.cc: In function 'int main()':
Main.cc:5:11: error: unable to find string literal operator 'operator""endl' with 'const char [4]', 'long unsigned int' arguments
cout<<"123"endl;
^