Name: Anonymous 2008-02-18 13:15
float fact(float x)
{
if x (<= 2)
return x;
else return x * (fact x--);
}
float fact(float x)
{
if x (<= 2)
return x;
else return x * (fact x--);
}
float
if (x <= 2)