p199 6.1 从小到大排序.cpp

来自「谭浩强 《C++ 程序设计》第三版的部分课后练习题源码」· C++ 代码 · 共 25 行

CPP
25
字号
#include<iostream>
using namespace std;
void swap(int &a,int &b)
{ int temp;
  temp=a;
  a=b;
  b=temp;
     
     
     } 
     
 int main()
 { int a,b,c;
    cout<<"please input three numbers: ";
    cin>>a>>b>>c;
    if(a>b) swap(a,b);
    if(a>c) swap(a,c);
    if(b>c) swap(c,b); 
    cout<<"the quene is  " <<a<<" "<<b<<" "<<c;
    system("pause");
    return 0; 
     
     
     }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?