fun(float x)
{ float y;
y=3*x-4;
return y;
}
返回值的类型是int类型
这种写法是不会编译通过的
应该这样写
float fun(float x)
{
float y;