摘要:
斐波那契是1,1,2,3,5,8,13,21。。。。。 即前两项之和为第三项。程序实现如下普通版的斐波那契: 1 <script type="text/javascript"> 2 function f(num) 3 { 4 5 if(num<=0) 6 7 { 8 9 console.log('请输入大于0的正整数');10 return ; 11 12 }13 14 else if(num<=2 && num>0)15 {16 return 1;17 }18 else19 {20 return f(num-2 阅读全文