面向对象程序设计上机练习三(有默认参数的函数)

来源:互联网 发布:上海游奇网络老板 编辑:程序博客网 时间:2024/06/05 23:49

Problem Description

利用默认参数的函数实现求2个或3个整数的最大值。

Input

输入3个int型整数。
Output

输出第1、2个整数及其最大值;
输出第1、2、3个整数及其最大值。

Example Input

88 66 99

Example Output

88 66 88
88 66 99 99

code

#include <iostream>using namespace std;void max(int x,int y, int z = 0){    int m = x;    if(m < y)        m = y;    if(m < z)        m = z;    cout << m << endl;}int main(){    int a,b,c;    cin >> a >> b ;    cout << a <<" "<< b <<" ";    max(a,b);    cin >> c;    cout << a << " " << b << " "<< c << " ";    max(a,b,c);    return 0;}
阅读全文
0 0
原创粉丝点击