首页 > 编程语言 > 详细

Euler Project question 2 in python way

时间:2014-10-15 22:21:42      阅读:403      评论:0      收藏:0      [点我收藏+]

# 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.
import time
t0 = time.time()
i = 1
j = 2
sum = 2
while j <= 4000000:
  i, j = j, i + j
  if j % 2 == 0:
    sum += j
print(sum)
t1 = time.time()
print "Process usage", t1 - t0

Euler Project question 2 in python way

原文:http://www.cnblogs.com/cyberpaz/p/4027410.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!