码迷,mamicode.com
首页 > 编程语言 > 详细

python3 兔子繁殖问题

时间:2019-05-27 15:05:06      阅读:622      评论:0      收藏:0      [点我收藏+]

标签:多少   题目   format   ima   code   nbsp   src   family   class   

题目 有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?

代码:

month = int(input("繁殖几个月?:"))
month_1 = 1
month_2 = 0
month_3 = 0
month_adult = 0
for i in range(month):
    month_1, month_2, month_3, month_adult = month_adult + month_3, month_1, month_2, month_adult+month_3
    print("第{}个月共{} 对兔子".format(i+1, month_1+month_2+month_3+month_adult))
    print("其中1月兔:", month_1)
    print("其中2月兔:", month_2)
    print("其中3月兔:", month_3)
    print("其中成年兔:", month_adult)

结果:

技术图片

 

python3 兔子繁殖问题

标签:多少   题目   format   ima   code   nbsp   src   family   class   

原文地址:https://www.cnblogs.com/angellyl/p/10930701.html

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