依照题意,递归求解
P1094
发布于2021年2月20日 16:22
阅读数 6.4k
#include<bits/stdc++.h>
using namespace std;
double funtion(double x,int n){
if(n==0)
return 1;
if(n==1) return x;
return ((2*n-1)*x-funtion(x,n-1)-(n-1)*funtion(x,n-2))/n;
}
int main(){
int n;
double x;
while(cin>>n>>x){
cout<<funtion(x,n)<<endl;
}
}
登录后发布评论
暂无评论,来抢沙发