为什么编译时显示没有错误,而运行却显示有一个错误呢?
新手,输入代码编译时没显示error,但运行却显示有一个错误求大家指导{:10_297:}发代码 鱼油发发代码 qiuyouzhi 发表于 2021-7-29 17:29
发代码
#include<stdio.h>
int max(int a,int b);
main()
{
int x,y,z;
int max(int a,int b);
ptintf("input two numbers;\n");
scanf("%d%d",&x,&y);
z=max(x,y);
printf("maxmum=%d",z);
}
int max(int a,int b)
{
if(a>b)return a;else return b;
} 大马强 发表于 2021-7-29 17:37
鱼油发发代码
#include<stdio.h>
int max(int a,int b);
main()
{
int x,y,z;
int max(int a,int b);
ptintf("input two numbers;\n");
scanf("%d%d",&x,&y);
z=max(x,y);
printf("maxmum=%d",z);
}
int max(int a,int b)
{
if(a>b)return a;else return b;
}
J爱学习 发表于 2021-7-29 21:10
#include
int max(int a,int b);
粗心呀
printf("input two numbers;\n"); 大马强 发表于 2021-7-29 21:13
粗心呀
啊呀呀,谢谢谢谢,没检查出来
页:
[1]