//根据输出结果,完成下面程序中max()函数的定义#include <iostream.h>int max(int x,int y,int z);void main(){int a=34,b=56,c=78;cout<<a<<"、"<<b<<"、"<<c<<"中的最大值为"<<max(a,b,c)<<endl;}int max(int x,int y,int z){}//程序的输出结果为://34、56、78中的最大值为78
1 回答
收到一只叮咚
TA贡献1821条经验 获得超4个赞
int max(int x,int y,int z)
{
if ( x < y )
x=y;
//到这里x >= y
if ( x < z )
x=z ;
//到这里x >= z
return x ; //返回最大的
}
添加回答
举报
0/150
提交
取消