Run ID:131571
提交时间:2025-09-27 18:35:05
#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; } if(b>a&&a<c){ cout<<b<<" "<<a<<" "<<c; } if(c>a&&a<b){ cout<<c<<" "<<a<<" "<<b; } return 0; }