用mathematica求斐波那契数列的第74至74+5项的值(用循环).

问题描述:

用mathematica求斐波那契数列的第74至74+5项的值(用循环).
编写程序过程

用 Nest 很快的
Module[{x = 1},NestList[x + (x = #) &,0,79]][[75 ;; 80]]
For 循环版本的
For[i = 1; f0 = 0; f1 = 1,i