Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
133699 吴清扬 01简单换行输出 C++ Compile Error 0 MS 0 KB 111 2025-10-20 17:08:38

Tests(0/0):


Code:

nclude<iostream> using namespace std; int main(){ cout<<123; cout<<endl; cout<<456;#i return 0; }


Run Info:

Main.cc:6:12: error: stray '#' in program
  cout<<456;#i
            ^
Main.cc:1:1: error: 'nclude' does not name a type
 nclude 
 ^
Main.cc: In function 'int main()':
Main.cc:4:2: error: 'cout' was not declared in this scope
  cout<<123;
  ^
Main.cc:5:8: error: 'endl' was not declared in this scope
  cout<