int funX(int x)
{
int y = 0;
if (x >0)
y = 1;
}
else if (0 == x)
y = 0;
else if (x < 0)
y = -1;
return y;