以下是引用sepiroth在2006-3-7 14:00:00的发言:
#include <stdio.h>
float fun(int x)
{float y=0.0;
y=(float)(x*x-5*x+3)/(x-2);
return y;
getch();
}
main()
{int x=0;
printf("pass any number:x<0 orx>0");
scanf("%d",&x);
printf("fun=%d",fun(x)); //printf("fun=%f",fun(x));
getch();
}
高手看看有什么问题~
结果一直是0