不死神兔

Posted yrswby2016

tags:

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

/**
* 使用递归计算斐波拉契数列数据得到第20个值并打印
* 不死神兔
*/
public class Rabbits {
public static void main(String[] args) {
int num = f(20);
System.out.println(num);
}

/**
* 定义方法计算兔子
*/
public static int f(int n){
if(n == 1 || n == 2){
return 1;
}else{
return f(n - 1) + f(n - 2);
}
}
}

以上是关于不死神兔的主要内容,如果未能解决你的问题,请参考以下文章

不死神兔

习题-四季-回文数-不死神兔

Problem01 不死神兔

Contents案例 File类 递归案例 不死神兔 1+2+3+4 遍历目录

Python趣味算法学习笔记------兔子产子(不死神兔)

递归练习题