美文网首页
offer_07 斐波那契数列

offer_07 斐波那契数列

作者: 半夜萤火虫 | 来源:发表于2018-09-07 00:03 被阅读0次

    这题比较基础。

    #include<stdio.h>
    int Compute(int a){
        if(a==1)
        return 1;
        else if(a==2)
        return 1;
        else
        return Compute(a-2)+Compute(a-1);
    }
    int main(){
        int n,sum;
        while(~scanf("%d",&n)){
            sum=Compute(n);
            printf("%d\n",sum);
        }
    }
    

    相关文章

      网友评论

          本文标题:offer_07 斐波那契数列

          本文链接:https://www.haomeiwen.com/subject/qrfqgftx.html