用遞歸的方法求下面函數f(x,n)的值(設n=5,x=100):
#include
using namespace std;
double Fx(double x,int n)
{
if( n==1)
return sqrt(x);
else
return Fx(x,n-1);
}
void main( )
{
double x;
int n;
cin>>x;
cin>>n;
Fx(x,n);
cout<<Fx(x,n);
}