递归算法题(兔子)

不打扰是莪最后的温柔 提交于 2020-03-24 09:05:22

问题:

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

代码:

import java.util.Scanner;

public class Else {
  public static void main(String[] args) {
    int n=new Scanner(System.in).nextInt();
    int totle = 2;

    System.out.println(digui(n)*2);
  }

  private static int digui(int n) {
    int totle = 1;
    if (n==1||n==2) {
      totle = 1;
    }
    if (n>2) {
      totle = digui(n-1)+digui(n-2);
    }
    return totle;
  }
}

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!