xt3-14.cpp
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. using namespace std;
  3. int main ()
  4. {int t,a,b,c,d;
  5.  cout<<"enter four numbers:";
  6.  cin>>a>>b>>c>>d;
  7.  cout<<"a="<<a<<", b="<<b<<", c="<<c<<",d="<<d<<endl;
  8.  if (a>b)
  9.  {t=a;a=b;b=t;} 
  10.  if (a>c)
  11.   {t=a; a=c; c=t;}
  12.  if (a>d)
  13.   {t=a; a=d; d=t;}
  14.  if (b>c)
  15.   {t=b; b=c; c=t;}
  16.  if (b>d)
  17.   {t=b; b=d; d=t;}
  18.  if (c>d)
  19.    {t=c; c=d; d=t;}
  20.  cout<<"the sorted sequence:"<<endl;
  21.  cout<<a<<", "<<b<<", "<<c<<", "<<d<<endl;
  22.  return 0;
  23.  }