c语言初学者 用vc6 出现这个问题 求大神指导一二!
#include<stdio.h>intmain(){intmax(intx,inty);inta,b,c;scanf("%d,%d",&a,&b);c=max(a,b)...
# include <stdio.h>
int main()
{
int max(int x,int y);
int a,b,c;
scanf("%d,%d",&a,&b);
c=max(a,b);
printf("max=%d\n",c);
return 0;
}
int max(int x,int y)
{
int z;
if(x>y)z=x;
else z=y;
return(z);
}
E:\文件\C language\Debug\实验.cpp(9) : error C2065: 'o' : undeclared identifierE:\文件\C language\Debug\实验.cpp(13) : error C2065: 'x' : undeclared identifier
E:\文件\C language\Debug\实验.cpp(13) : error C2065: 'y' : undeclared identifier
E:\文件\C language\Debug\实验.cpp(17) : fatal error C1004: unexpected end of file found
执行 cl.exe 时出错.
实验.exe - 1 error(s), 0 warning(s) 展开
int main()
{
int max(int x,int y);
int a,b,c;
scanf("%d,%d",&a,&b);
c=max(a,b);
printf("max=%d\n",c);
return 0;
}
int max(int x,int y)
{
int z;
if(x>y)z=x;
else z=y;
return(z);
}
E:\文件\C language\Debug\实验.cpp(9) : error C2065: 'o' : undeclared identifierE:\文件\C language\Debug\实验.cpp(13) : error C2065: 'x' : undeclared identifier
E:\文件\C language\Debug\实验.cpp(13) : error C2065: 'y' : undeclared identifier
E:\文件\C language\Debug\实验.cpp(17) : fatal error C1004: unexpected end of file found
执行 cl.exe 时出错.
实验.exe - 1 error(s), 0 warning(s) 展开
展开全部
# include <stdio.h>
int max(int x,int y);
int main()
{
int a,b,c;
scanf("%d,%d",&a,&b);
c=max(a,b);
printf("max=%d\n",c);
return 0;
}
int max(int x,int y)
{
int z;
if(x>y)z=x;
else z=y;
return(z);
}
你的是对的
E:\文件\C language\Debug\实验.cpp(9) : error C2065: 'o' : undeclared identifier
此处是你把 “0”写成了 o
E:\文件 \C language\Debug\实验.cpp(13) : error C2065: 'x' : undeclared identifier
这是你没定义 x 这个变量,用变量前要先定义
E:\文件\C language\Debug\实验.cpp(13) : error C2065: 'y' : undeclared identifier
这是你没定义 y 这个变量,用变量前要先定义
E:\文件\C language\Debug\实验.cpp(17) : fatal error C1004: unexpected end of file found
少了 “}”号,它是成对出现的
int max(int x,int y);
int main()
{
int a,b,c;
scanf("%d,%d",&a,&b);
c=max(a,b);
printf("max=%d\n",c);
return 0;
}
int max(int x,int y)
{
int z;
if(x>y)z=x;
else z=y;
return(z);
}
你的是对的
E:\文件\C language\Debug\实验.cpp(9) : error C2065: 'o' : undeclared identifier
此处是你把 “0”写成了 o
E:\文件 \C language\Debug\实验.cpp(13) : error C2065: 'x' : undeclared identifier
这是你没定义 x 这个变量,用变量前要先定义
E:\文件\C language\Debug\实验.cpp(13) : error C2065: 'y' : undeclared identifier
这是你没定义 y 这个变量,用变量前要先定义
E:\文件\C language\Debug\实验.cpp(17) : fatal error C1004: unexpected end of file found
少了 “}”号,它是成对出现的
追问
不管输出什么数字 输出的都是前面那个 怎么回事?
追答
# include int max(int x,int y);
int main()
{
int a,b,c,d; scanf("%d,%d",&a,&b);
printf("\n输入数为a=%d b=%d\n",a,b);
c=max(a,b);
printf("max=%d\n",c);
d=a>b?a:b; //第二种判断办法
printf("最大的数为%d\n",d);
return 0;}
int max(int x,int y)
{
int z;
if(x>y)z=x;
else z=y;
return(z);
}
你输入的方法有误!
你要这样输入 :
1,2
接着再回车
不能 : 1 2
再回车,中间不能为空格
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询