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");
}
为什么报错呢!
2017-02-27 19:32
2017-02-27 20:06
2017-02-27 20:19
2017-02-27 20:56
2017-02-28 19:33