Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
148534 曹奕晗 08三个数排序 C++ Compile Error 0 MS 0 KB 241 2026-02-25 16:12:37

Tests(0/0):


Code:

#include<iostream> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if(a>b&&a>c&&b>c) { cout<<a<<" "<<b<<" "<<c; } else { if(b>c) { cout<<b<<" "<<c<<" "<<a; } cout<<c<<" "<<b<<" "<<a;a } }


Run Info:

Main.cc: In function 'int main()':
Main.cc:19:2: error: expected ';' before '}' token
  }
  ^
Main.cc:19:2: warning: statement has no effect [-Wunused-value]