//有一分数序列:2/1,3/2,5/3,8/5,13/8,21/13...求出这个数列的前20项之和。
#include <iostream>
#include "stdio.h"
using namespace std;
int main()
{
float x=0.0;
float f=2.0,g=1.0,t=0.0;
int i;
for(i=1;i<=20;i++){
x+=f/g;
//cout<<f<<"/"<<g<<"+";
t=f;
f=f+g;
g=t;
}
//cout<< x <<endl;
printf("%f",x);
return 0;
}
运行结果为:
- class='magplus' title='点击查看原始大小图片' />
- 大小: 23.8 KB