Run ID:110954
提交时间:2025-02-24 19:35:08
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a,b,c; 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; }