Warning: Undefined array key "night" in /www/wwwroot/dhaomu.com/wp-content/themes/b2/header.php on line 18

PHP技术1,1,2,3,5,8,13,21,34…求第30位的数是多少?

php技术:php 1,1,2,3,5,8,13,21,34…求第30位的数是多少?

代码演示

// 1,1,2,3,5,8,13,21,34 数字的规律
// 前面两个数相加等于后面那个数。1+1=2 , 2+3=5 ...
// 时间复杂度 : O(1)  空间复杂度: O(1)

<?php
$arr = [1, 1];
for ($i=2; $i<30; $i++) {
    $arr[$i] = $arr[$i-1] + $arr[$i-2]; 
}
echo end($arr); // 832040
温馨提示:
1.本站大部分内容均收集于网络!若内容若侵犯到您的权益,请发送邮件至:duhaomu@163.com,我们将第一时间处理!
2.资源所需价格并非资源售卖价格,是收集、整理、编辑详情以及本站运营的适当补贴,并且本站不提供任何免费技术支持。
3.所有资源仅限于参考和学习,版权归原作者所有,更多请阅读网站声明

给TA赞赏
共{{data.count}}人
人已赞赏
编程技巧

PHP技术break和continue后面都是可以加层级的

2016-3-2 9:00:00

编程技巧

PHP技术PHP<5.3.2中没有提供ReflectionMethod::setAccessible怎么获取私有属性呢?

2016-3-4 9:00:00

0 条回复 A文章作者 M管理员

Warning: Trying to access array offset on value of type null in /www/wwwroot/dhaomu.com/wp-content/themes/b2/functions.php on line 3914

Warning: Trying to access array offset on value of type null in /www/wwwroot/dhaomu.com/wp-content/themes/b2/functions.php on line 3914
----《》
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索