码迷,mamicode.com
首页 > 其他好文 > 详细

练习题四

时间:2018-06-26 19:32:52      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:span   style   range   练习   col   多少   int   三个月   pre   

古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?请编写程序实现。

rabbit1 = rabbit2 = 1
for i in range(1,13):
    print(%d,%d % (rabbit1,rabbit2))
    if (i % 3) ==0:
        print(‘‘)
    rabbit1 = rabbit1 + rabbit2
    rabbit2 = rabbit1 + rabbit2

 

练习题四

标签:span   style   range   练习   col   多少   int   三个月   pre   

原文地址:https://www.cnblogs.com/banzui/p/9230683.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!