Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
6416 limingyu 输入三个整数,按从大到小的顺序输出 C++ 运行出错 1 MS 272 KB 366 2022-12-03 14:23:07

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<b){ t = a; a = b; b = t; } cout<<a<<b<<c<<endl; system("pause"); return 0; }


测评信息: