提交时间:2024-11-07 21:14:29
运行 ID: 55511
#include<iostream> #include<iomanip> using namespace std; int main() { int n; cin>>n; float x=2,s=0; for(int i=1;i<=n;i++) { s+=x; x=1/x+1; } cout<<fixed<<setprecision(4)<<s; return 0; }