public class Rabbits {
//一对兔子的生育情况
public int deliver(int month){
if(month>=3){
//每一对兔子的出生数量刚好等于month-1,每对出生的兔子需要在上一代的兔子体内孕育两个二月,所以其总的孕育时间会比上一代兔子少两个月
return month-1 + deliver(month-2);//这波解释得够明确了吧,老铁点个赞再走
}else {
return 1;
}
}
public static void main(String[] args) {
Rabbits rabbit = new Rabbits();
int decent = rabbit.deliver(8);
System.out.println(decent);
}
}