C语言求三个数的最大值,看看我哪里写错了?

这是我自己编写的源程序,在compile的时候提示errorC2061:syntaxerror:identifier'y'errorC2660:'max':functio... 这是我自己编写的源程序,在compile的时候提示
error C2061: syntax error : identifier 'y'
error C2660: 'max' : function does not take 3 paramete
error C2061: syntax error : identifier 'y'
error C2065: 'y' : undeclared identifier
error C2065: 'z' : undeclared identifier
执行 cl.exe 时出错.

以下是源程序代码:

#include "stdafx.h"
int main ( int a,int b,int c)
{
int max(int x, y, z);
scanf("%d %d %d", &a, &b, &c);
printf("max=%d\n",max(a, b, c));
return 1;
}

int max(int x, y, z)
{

int temp;
temp=x;
if (x<y)
temp=y;
if (temp<z)
temp=z;
return temp;

}

谢谢各位大虾,小弟刚刚开始自学C语言,望知道的不吝赐教!
Thanks!
展开
 我来答
小Tu
2009-08-29 · 超过33用户采纳过TA的回答
知道答主
回答量:132
采纳率:0%
帮助的人:81.4万
展开全部
# include <stdio.h>
int max(int x,int y,int z)
{
int temp=x;
if(y>temp)
{
temp=y;
}
if(z>temp)
{
temp=z;
}
return temp;

}
void main ()
{
int a,b,c,max0;
printf("请分别输入a,b,c:");
scanf("%d%d%d",&a,&b,&c);
max0=max(a,b,c);
printf("max=%d \n",max0);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友ecba46aab
2009-08-29 · TA获得超过2303个赞
知道大有可为答主
回答量:2477
采纳率:100%
帮助的人:1976万
展开全部
变量没有定义
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
江小右
2009-08-29 · TA获得超过6928个赞
知道小有建树答主
回答量:1195
采纳率:0%
帮助的人:830万
展开全部
main中int max(int x, y, z)改成max(a,b,c);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
喜哲悉丽
2020-06-07 · TA获得超过3910个赞
知道大有可为答主
回答量:3030
采纳率:24%
帮助的人:214万
展开全部
#include
"stdafx.h"
int
main
()
{
int
a
=
scanf("%d",
&a);
int
b
=
scanf("%d",
&b);
int
c
=
scanf("%d",
&c);
int
result
=
max(a,b,c);
printf("max=%d\n",result);
return
1;
}
int
max(int
x,int
y,int
z)
{
int
temp;
temp=x;
if
(x
评论
0
0
加载更多
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
辉藏愚霜
2019-11-07 · TA获得超过3494个赞
知道大有可为答主
回答量:2996
采纳率:31%
帮助的人:398万
展开全部
错了很多地方,我给你改改。
#include
int
max(int
x,int
y,int
z)
{
int
temp=x;
if(x
评论
0
0
加载更多
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式