⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 p199 6.1 从小到大排序.cpp

📁 谭浩强 《C++ 程序设计》第三版的部分课后练习题源码
💻 CPP
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -