偶斐波那契数列

作者:Eric Hodges

https://projecteuler.net/problem=2

斐波那契数列中的每一项都是前两项的和。从 1 和 2 开始,前 10 项是

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

考虑斐波那契数列中值不超过四百万的项,求所有偶数项的和。

源代码: prob002-eric256.pl

use v6;

my $term = 1;
my $last_term = 0;
my $sum = 0;

while ($term < 4000000) {
    ($last_term, $term) = ($term, $term + $last_term);
    $sum += $term unless $term % 2;
}
say $sum;