其他分享
首页 > 其他分享> > 牛客刷题之斐波那契数列

牛客刷题之斐波那契数列

作者:互联网

题目描述

大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项(从0开始,第0项为0)。

n<=39

解题思路:使用递归的思想即可。

public class Solution {
    public int Fibonacci(int n) {
        return Febo(n);
    }
    
    static int Febo(int n){
       if(n == 0){
           return 0;
       }
       else if(n == 1){
           return 1;
       }
          return Febo(n-1)+Febo(n-2);
    }
}

 

标签:return,数列,int,牛客,之斐波,那契,public,Febo
来源: https://blog.csdn.net/qq_40651109/article/details/98765347