Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
137663 余建成 07交换数据II C++ Compile Error 0 MS 0 KB 204 2025-11-22 10:52:46

Tests(0/0):


Code:

#inciude<iotream> using namespace int; ing main() { int a,b,c; cin>>a>>b; if(a>b) { c=a; a=b; b=c; } cout<<a<<" "<<b<<endl; return 0; }


Run Info:

Main.cc:1:2: error: invalid preprocessing directive #inciude
 #inciude
  ^
Main.cc:2:19: error: expected identifier before 'int'
  using  namespace int;
                   ^
Main.cc:2:19: error: expected ';' before 'int'
Main.cc:2:19: error: declaration does not declare anything [-fpermissive]
Main.cc:3:2: error: 'ing' does not name a type
  ing main()
  ^