码迷,mamicode.com
首页 > 编程语言 > 详细

谭浩强 c++程序设计第一章课后习题 第10题

时间:2017-09-08 10:15:06      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:bsp   end   接收   http   div   void   clu   ima   pre   

技术分享

#include <iostream>
using namespace std;

int main()
{
    int a,b,c;
    cout<<"请输入三个整数类型的数字:" <<endl;
    cin>>a>>b>>c;
    void sort(int x,int y,int z);
    sort(a,b,c);//abc有具体值,称为实际参数 
    return 0;
}        
void sort(int x,int y,int z)//用于接收实际参数,称为形式参数 
{
    int temp;
    if(x>y)
    {
        temp=x;x=y;y=temp;
    }
    if(z<x)
    cout<<z<<,<<x<<,<<y<<endl;
    else if(z<y) cout<<x<<,<<z<<,<<y<<endl;
    else
    cout<<x<<,<<y<<,<<z<<endl;
}

 

谭浩强 c++程序设计第一章课后习题 第10题

标签:bsp   end   接收   http   div   void   clu   ima   pre   

原文地址:http://www.cnblogs.com/qingyundian/p/7492912.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!