Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
131564 唐俊逸 08三个数排序 C++ Wrong Answer 1 MS 276 KB 667 2025-09-27 18:23:07

Tests(6/10):


Code:

#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(a>c&&c>b){ cout<<a<<" "<<c<<" "<<b; } if(b>a&&a>c){ cout<<b<<" "<<a<<" "<<c; } if(b>c&&c>a){ cout<<a<<" "<<b<<" "<<c; } if(c>b&&b>a){ cout<<c<<" "<<b<<" "<<a; } if(c>a&&a>b){ cout<<c<<" "<<a<<" "<<b; } return 0; }


Run Info:

------Input------
46 84 50
------Answer-----
84 50 46
------Your output-----
46 84 50