Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
100063 唐诗阳 08三个数排序 C++ Accepted 1 MS 268 KB 631 2024-12-01 15:16:37

Tests(10/10):


Code:

#include<iostream> #include<cstdio> //scanf()\printf() #include<cstring> #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a,b,c,n; cin>>a>>b>>c; if(a>b && b>c){ cout<<a<<" "<<b<<' '<<c; } else if(a>c && c>b){ cout<<a<<" "<<c<<' '<<b; } else if(b>a && a>c){ cout<<b<<" "<<a<<' '<<c; } else if(b>c && c>a){ cout<<b<<" "<<c<<' '<<a; } else if(c>a && a>b){ cout<<c<<" "<<a<<' '<<b; } else if(c>b && b>a){ cout<<c<<" "<<b<<' '<<a; } return 0; }