vd code 比大小
按照谭浩强C语言的书打的代码,运行之后,起不到比大小的作用#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;
}
file:///C:/Users/17384/Desktop/QQ%E6%88%AA%E5%9B%BE20220105152642.png 本帖最后由 番杰 于 2022-1-5 18:09 编辑
你这个max函数的自己写;
它有两个int参数,返回值是int类型;
int max(int x,int y)
{
if(x > y)
return x;
else
return y;
}
像这个样子,然后在main函数中调用这个子函数。
另外,这个函数的声明别放在main函数里,放在main函数之前
页:
[1]