int max(int a,int b);用vs 总报错 求指导!
#include <stdio.h>#include<stdlib.h>
int main()
{
int max(int a,int b);
{
int a,b;
if (a>b)
return a;
else
return b;
}
system("pause");
}
为什么报错呢!
#include <stdio.h> #include<stdlib.h> int main() { int max(int a,int b); int a, b; scanf("%d%d", &a, &b); printf("%d", max(a, b)); system("pause"); } int max(int a, int b) { if (a>b) return a; else return b; }
[此贴子已经被作者于2017-2-27 19:39编辑过]