#include
#include
#include
using namespace std;
int max(int a,int b)
{
if(a>b) return a;
else return b;
}
int max(int a,int b,int c)
{
if(a>b)
{
if(a>c) return a;
else return c;
}
else
{
if(b>c) return b;
else return c;
}
}
int max(int a[4])
{
int i,max=a[0];
for(i=0;i<3;i++)
{
if(max<a[i]) max=a[i];
}
return max;
}
void main()
{
int i,n,x,a[4];
cout<<“Please give the numbers you want:”<<endl;
cin>>n;
for(i=0;i<n;i++)
{
cin>>a[i];
}
if(n2)
x=max(a[0],a[1]);
else if(n3)
x=max(a[0],a[1],a[2]);
else if(n==4)
x=max(a);
cout<<“Max is:”<<x<<endl;
}
用C++语言编写函数,使用函数重载,能求两个整数的最大数、三个整数的最大数、四个整数的最大数
最新推荐文章于 2024-09-19 22:50:01 发布