为什么会出现redefinition of formal parameter 'f错误
#include<math.h>#include<stdio.h>
float fun(double f)
{ int a,y,z,w;
double f,x,b;
float c;
y=(int)floor(f);
x=f-y;
z=(int)(x*1000);
w=z%10;
a=(int)(x*100);
if(w>=5&&w<=9)
a=a+1;
else a=a;
b=(a/100);
c=(float)(b+y);
return c;
}
main()
{
double h;
float v;
scanf("%f",&h);
v=fun(h);
printf("%.2f",v);
}