为萌新送福利~(递推做的)

luffy 路飞AFO 2019-11-12 13:49:11 2020-08-20 19:08:25 30

只供借鉴,严禁抄袭!!!

#include<bits/stdc++.h>
using namespace std;
int main(void)
{
double x,f[10]={0.0};
int n;
cin>>n;
cin>>x>>n;
f[1]=sqrt(1+x);
for(int i=2;i<=n;i++)
{
f[i]=sqrt(i+f[i-1]);
}
printf("%.2lf",f[n]);
return 0;
}
{{ vote && vote.total.up }}

共 14 条回复

chen_zhe 沙雕

大子你会为你的某句话付出代价的

luffy 路飞AFO

小子你会付出代价的

chen_zhe 沙雕

就抄你的咋地

tangboya