C语言:编写函数,求输入的三个整数值的最大值,并在主函数中输出。

 我来答
t415422663
2010-11-30 · TA获得超过437个赞
知道小有建树答主
回答量:233
采纳率:0%
帮助的人:220万
展开全部
#include <stdio.h>
int Max(int a,int b,int c)
{
int max;
max=a;
if(max<b)max=b;
if(max<c)max=c;
return max;
}
void main()
{
int a,b,c,max;
printf("Input 3 numbers:\n");
scanf("%d%d%d",&a,&b,&c);
max=Max(a,b,c);
printf("Max= %d\n",max);
}
zyl880414
2010-11-30
知道答主
回答量:6
采纳率:0%
帮助的人:0
展开全部
#include <stdio.h>
int max(){
int a,b,c,m;
scanf("%d%d%d",&a,&b,&c);
if(a>b)
m=a;
else
m=b;
if(c>m)
m=c;
return m;
}
void main(){
printf("%d\n", max(););
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
liaozi007bo
2010-11-30 · 超过25用户采纳过TA的回答
知道答主
回答量:99
采纳率:0%
帮助的人:53.6万
展开全部
int max_in_three(int a,int b,int c)
{
int tmp=a;
if(tmp<b) tmp=b;
if(tmp<c) tmp=c;
return tmp;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
MxMaster
2010-11-30
知道答主
回答量:44
采纳率:0%
帮助的人:29.3万
展开全部
#include <stdio.h>
#include <stdlib.h>

int max( int a, int b, int c )
{
c = c > ( a = a > b ? a : b ) ? c : a;
return c;
}

int main()
{
int a, b , c;

scanf( "%d %d %d", &a, &b, &c );

printf("%d\n", max( a, b, c ));

return 0;
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式