码迷,mamicode.com
首页 > 其他好文 > 详细

斐波那契数列

时间:2018-05-17 19:54:23      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:code   要求   输入   lse   nbsp   循环   turn   斐波那契数   col   

题目:大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项。

思路:1.递归

   2.循环

int Fib1(int n)
{
    if(n == 1||n == 2)return 1;
    else return Fib1(n-1)+Fib1(n-2);
}

int Fib2(int n)
{
    int n1 = 1;
    int n2 = 1;
    int n3 = 0;
    if(n == 1||n == 2) return 1;
    while(n>2)
    {
        n3 = n2+n1;
        n1 = n2;
        n2 = n3;
        n--;
    }
    return n3;
}

 

斐波那契数列

标签:code   要求   输入   lse   nbsp   循环   turn   斐波那契数   col   

原文地址:https://www.cnblogs.com/yapp/p/9052672.html

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