用c++编写重载函数max1课分别求取2个整数、3个整数、2个双精度数和3个双精度数的最大值。

kkk快快快... kkk快快快 展开
 我来答
一个奇葩两个帮
2018-04-11 · TA获得超过523个赞
知道答主
回答量:5
采纳率:100%
帮助的人:696
展开全部

c++编写

#include <iostream>

using namespace std;

int Max1(int a,int b){

if(a>b)

return a;

else 

return b;

}

double Max1(double x,double y){

if(x>y)

return x;

else 

return y;

}

int Max1(int a,int b,int c){

return Max1(a,Max1(b,c));

}

double Max1(double x,double y,double z){

return Max1(x,Max1(y,z));

}

int main(){

int a,b,c;

cout<<"please enter two integer:";

cin>>a>>b;

cout<<"there is the answer:"<<Max1(a,b)<<endl;

cout<<"please enter three integer:";

cin>>a>>b>>c;

cout<<"there is the answer:"<<Max1(a,b,c)<<endl;

double x,y,z;

cout<<"please enter two numder:";

cin>>x>>y;

cout<<"there is the answer:"<<Max1(x,y)<<endl;

cout<<"please enter three number:";

cin>>x>>y>>z;

cout<<"there is the answer:"<<Max1(x,y,z)<<endl;

return 0;

}

匿名用户
2013-08-02
展开全部
int max(int a,int b){ if(a<b) return b; else if(a>b) return a; else return a;} int max(int a,int b,int c){ int max; if(a<b) max=a; else max=b; if(max<c) max=c; else max=max; return max;}双精度的也差不多
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
liwhdi
2016-09-21 · TA获得超过176个赞
知道小有建树答主
回答量:130
采纳率:0%
帮助的人:41.2万
展开全部
#include <iostream>
using namespace std;
int Max1(int a,int b){
if(a>b)
return a;
else
return b;
}
double Max1(double x,double y){
if(x>y)
return x;
else
return y;
}
int Max1(int a,int b,int c){
return Max1(a,Max1(b,c));
}
double Max1(double x,double y,double z){
return Max1(x,Max1(y,z));
}

int main(){
int a,b,c;
cout<<"please enter two integer:";
cin>>a>>b;
cout<<"there is the answer:"<<Max1(a,b)<<endl;

cout<<"please enter three integer:";
cin>>a>>b>>c;
cout<<"there is the answer:"<<Max1(a,b,c)<<endl;

double x,y,z;
cout<<"please enter two numder:";
cin>>x>>y;
cout<<"there is the answer:"<<Max1(x,y)<<endl;

cout<<"please enter three number:";
cin>>x>>y>>z;
cout<<"there is the answer:"<<Max1(x,y,z)<<endl;

return 0;
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-08-02
展开全部
int max(int a , int b );int max(int a , int b , int c);int max(double a,double b);int max(double a,double b,double c);这样就可以了。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-08-02
展开全部
这个书上都有写的吧。。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式