老鼠繁殖问题

Posted 风少凌云

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了老鼠繁殖问题相关的知识,希望对你有一定的参考价值。

开始有两只老鼠,每个月繁殖一对幼鼠,幼鼠三个月长大,即可繁殖,
问二十四个月后共有多少只老鼠(不考虑老鼠死亡、雌雄问题)?
package com.lovo.homework;

public class TestMouse {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub

int old = 2,first = 0, second = 0, third = 0;

for(int i = 0; i < 24; i++){
old = old + third;
third = second;
second = first;
first = old;
}

System.out.println(old + first + second + third);
}

}

以上是关于老鼠繁殖问题的主要内容,如果未能解决你的问题,请参考以下文章

BZOJ2548 [CTSC2002] 灭鼠行动

C#语言设计 兔子繁殖问题。

for循环——兔子繁殖问题

兔子繁殖问题 C语言编程

递归二:求老鼠生孩子问题

python3 兔子繁殖问题