2.3基本算法之递归变递推_3525上台阶 python
生活随笔
收集整理的這篇文章主要介紹了
2.3基本算法之递归变递推_3525上台阶 python
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
http://ybt.ssoier.cn:8088/problem_show.php?pid=1190
""" 2.3基本算法之遞歸變遞推_3525上臺階 http://noi.openjudge.cn/ch0203/3525/1190:上臺階 http://ybt.ssoier.cn:8088/problem_show.php?pid=11903258:兔子產子 http://bailian.openjudge.cn/practice/3258/ """ def climbStairs(n):a,b,c=1,2,4for i in range(n-3):c, b, a = a+b+c, c, bprint(c)flag=1 while flag:x=int(input())if( x==0):flag=0else:if (x==1 ):print(1)else:if (x==2 ):print(2)else:climbStairs(x)總結
以上是生活随笔為你收集整理的2.3基本算法之递归变递推_3525上台阶 python的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: js结合jquery实现的ajax瀑布流
- 下一篇: 第十一届蓝桥杯省赛C++组试题 第5题