x-1(-5<x<0)
y={x (x=0)
x+1 (0<x<8) 输出该函数。
int fun(int x)
{
int y;
if(x>-5&&x<0)
y=x-1;
else if(x==0)
y=x;
else
y=x+1;
return y;
}