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! 展开
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! 展开
11个回答
展开全部
# 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);
}
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);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
变量没有定义
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
main中int max(int x, y, z)改成max(a,b,c);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#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
加载更多
"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
加载更多
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
错了很多地方,我给你改改。
#include
int
max(int
x,int
y,int
z)
{
int
temp=x;
if(x
评论
0
0
加载更多
#include
int
max(int
x,int
y,int
z)
{
int
temp=x;
if(x
评论
0
0
加载更多
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询