2012-02-02から1日間の記事一覧

Fibonacci Series

CodeEvalフィボナッチ!! 設問 Description:The Fibonacci series is defined as: F(0) = 0; F(1) = 1; F(n) = F(n-1) + F(n-2) when n>1;. Given a positive integer 'n', print out the F(n).Input sample:The first argument will be a text file contai…