C++_求2个或3个正整数中的最大数,用带有默认参数的函数实现
Posted CaoPengCheng&
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++_求2个或3个正整数中的最大数,用带有默认参数的函数实现相关的知识,希望对你有一定的参考价值。
C++_求2个或3个正整数中的最大数,用带有默认参数的函数实现
#include<iostream>
using namespace std;
/**
* 求2个或3个正整数中的最大数,用带有默认参数的函数实现
* @project C++_Demo
* @author CaoPengCheng
* @date 2021-09-07
* @version 1.0.0
*/
int main()
{
int max(int a,int b,int c=0);
int a,b,c;
cout<<"input 2 number:";
cin>>a>>b;
cout<<"output MAX="<<max(a,b)<<endl;
cout<<"input 3 number:";
cin>>a>>b>>c;
cout<<"output MAX="<<max(a,b,c)<<endl;
return 0;
}
int max(int a, int b,int c)
{
if (b>a) a=b;
if(c>a) a=c;
return a;
}
以上是关于C++_求2个或3个正整数中的最大数,用带有默认参数的函数实现的主要内容,如果未能解决你的问题,请参考以下文章