码迷,mamicode.com
首页 > 其他好文 > 详细

有参函数的调用

时间:2017-11-10 00:24:56      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:and   style   输入   http   color   分享   space   logs   std   

#include <iostream>
using namespace std;
int max(int x,int y,int z=0);

int main(){
    
    int a,b,c,m;

    
    cout<<"请你输入两个整型的数字:"<<endl;
    cin>>a>>b;
    m=max(a,b);
    cout<<"The max of a b and c is:"<<m<<endl;
    
    cout<<"请你输入三个整型的数字:"<<endl;
    cin>>a>>b>>c;
    m=max(a,b,c);
    cout<<"The max of a b and c is:"<<m<<endl;
    
    return 0;
}

int max(int x,int y,int z){
    if(z>x)
    x=z;
    if(y>x)
    x=y;
    return x;
}

技术分享

有参函数的调用

标签:and   style   输入   http   color   分享   space   logs   std   

原文地址:http://www.cnblogs.com/928990166li/p/7811621.html

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