一道c语言题目,用递归,求解啊。

2025-04-24 18:23:52
推荐回答(1个)
回答1:

float fun(int n)
{
float k;
if(n==0) k=1;
else k=x*fun(n-1);
return k;
}