Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
110952 李鸿文添 08三个数排序 C++ Wrong Answer 1 MS 268 KB 779 2025-02-24 19:33:57

Tests(5/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&&a>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; }


Run Info:

------Input------
88 10 45
------Answer-----
88 45 10
------Your output-----
88 10 45