| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 153062 | 吴梓滔 | 01简单换行输出 | C++ | Compile Error | 0 MS | 0 KB | 125 | 2026-05-10 09:41:28 |
#include <bits/stdc++.h> using namespace std; int main() { cout<<"123"endl; cout<<"456"endl; return 0; }
Main.cc: In function 'int main()':
Main.cc:6:11: error: unable to find string literal operator 'operator""endl' with 'const char [4]', 'long unsigned int' arguments
cout<<"123"endl;
^
Main.cc:7:11: error: unable to find string literal operator 'operator""endl' with 'const char [4]', 'long unsigned int' arguments
cout<<"456"endl;
^