答案:
#include <iostream>
using namespace std;
int main()
{
int a,b,c,d,temp;
cout<<"Please input a,b,c,d:";
cin>>a>>b>>c>>d;
if(a>b) temp=a,a=b,b=temp;
if(a>c)temp=a,a=c,c=temp;
if(a>d)temp=a,a=d,d=temp;
if(b>c)temp=b,b=c,c=temp;
if(b>d)temp=b,b=d,d=temp;
if(c>d)temp=c,c=d,d=temp;
cout<<"the sort a,b,c,d is:"<<a<<' '<<b<<' '<<c<<' '<<d<<endl;
return 0;
}