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

递归算法题(兔子)

时间:2017-08-22 12:31:06      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:ext   bsp   nbsp   exti   ann   port   int()   ==   tle   

问题:

古典问题: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;
  }
}

 

递归算法题(兔子)

标签:ext   bsp   nbsp   exti   ann   port   int()   ==   tle   

原文地址:http://www.cnblogs.com/-rainbow-/p/7410830.html

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