会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
穆乙’s Blog 专注前端技术
宁肯像种子一样等待,也不愿像疲惫的陀螺 ,旋转得那样勉强
首页
新随笔
联系
管理
2013年10月18日
斐波那契数列
摘要: function num(n){ var normal = Math.pow(5, 0.5); if (n<3){ return 1; } return 1/normal * (Math.pow(0.5 * (1 + normal),n) - Math.pow(0.5 * (1-normal),n)); } console.log(num(8));
阅读全文
posted @ 2013-10-18 13:34 穆乙
阅读(374)
评论(0)
推荐(0)
编辑
公告