观察下面的式子,并找出其中的规律,计算前n项和。
2/1+3/2+5/3+8/5+ 13/8+ 21/13…….
标签:page Fix sam 提交 namespace include ocr input submit
1
3
13
0
2.000 5.167 21.334
解题思路:for循环求和即可
#include<bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n&&n) { int a=2,b=1; double temp,sum=0; for(int i=1;i<=n;++i) { sum+=(double)a/b; temp=a; a+=b; b=temp; } cout<<fixed<<setprecision(3)<<sum<<endl; } return 0; }
标签:page Fix sam 提交 namespace include ocr input submit
原文地址:https://www.cnblogs.com/wjw2018/p/9293468.html