博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(Problem 2)Even Fibonacci numbers
阅读量:6553 次
发布时间:2019-06-24

本文共 899 字,大约阅读时间需要 2 分钟。

Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be:

1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ...

By considering the terms in the Fibonacci sequence whose values do not exceed four million, find the sum of the even-valued terms.

1 #include 
2 #include
3 #include
4 #include
5 6 #define N 4000000 7 8 int a[1001]; 9 10 void solve()11 {12 int a,b,c,n,count=2;13 a=1,c=0,b=2;14 n=3;15 while(c<=N)16 {17 c=a+b;18 if(n%2!=0)19 {20 a=c;21 }22 else23 {24 b=c;25 }26 n++;27 if(c%2==0)28 {29 count+=c;30 }31 }32 printf("%d",count);33 }34 35 int main()36 {37 solve();38 getchar();39 getchar();40 return 0;41 }

 

Answer:
4613732

 

转载地址:http://fjjco.baihongyu.com/

你可能感兴趣的文章
每天laravel-20160715|ConfirmableTrait
查看>>
双向链表的应用
查看>>
记录nginx访问站点流量,并发等信息
查看>>
我的友情链接
查看>>
XenServer 6.5实战系列之四:XenServer 6.5 Installation
查看>>
负载均衡
查看>>
正确分析Oracle数据的隐式游标
查看>>
System Volume Information文件夹
查看>>
sed命令
查看>>
Oracle Parallel Execution(并行执行)
查看>>
JAVA面向对象-----封装
查看>>
PhpStorm函数注释的设置
查看>>
Centos 7 安装 mysql
查看>>
侧栏广告 跟随浏览器移动(扩展)
查看>>
第二阶段冲刺阶段站立会议每天任务5
查看>>
Xshell用密钥远程连接Linux
查看>>
nginx配置详解
查看>>
【JAVA语法】01Java-变量与数据类型
查看>>
How to solve problems
查看>>
Struts_登录练习(未配置拦截器)
查看>>