Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
6321 limingyu 输入三个整数,按从大到小的顺序输出 C++ 运行出错 0 MS 276 KB 369 2022-12-01 18:50:00

Tests(0/1):


#include<iostream> using namespace std; int main () { int a,b,c; int t; cin>>a>>b>>c; if (a>b){ t = a; a = b; b = t; }if (b>c){ t = b; b = c; c = t; }if (a > c){ t = a; a = c; c = t; } cout<<a<<b<<c<<endl; system("pause"); return 0; }


测评信息: