题目描述
读取三个整数并按升序对它们进行排序。
样例
#include<iostream>
using namespace std;
int main()
{
int a,b,c,temp;
cin>>a>>b>>c;
int d=a,e=b,f=c;
if(a>b){
temp=b;
b=a;
a=temp;
}
if(b>c){
temp=c;
c=b;
b=temp;
}
if(a>b){
temp=b;
b=a;
a=temp;
}
cout<<a<<'\n';
cout<<b<<'\n';
cout<<c<<'\n';
cout<<" "<<endl;
cout<<d<<'\n';
cout<<e<<'\n';
cout<<f;
return 0;
}