Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
145895 周润泽 08三个数排序 C++ Compile Error 0 MS 0 KB 441 2026-01-25 19:29:11

Tests(0/0):


Code:

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


Run Info:

Main.cc: In function 'int main()':
Main.cc:14:11: error: 'c0' was not declared in this scope
     cout<