C/C++经典程序训练2---斐波那契数列 (sdut oj)


C/C++经典程序训练2---斐波那契数列

Time Limit: 1000MS  Memory Limit: 65536KB



Problem Description

编写计算斐波那契(Fibonacci)数列的第n项函数fib(n)(n<40)。
数列:
f1=f2==1; 
fn=fn-1+fn-2(n>=3)。


Input

输入整数n的值。


Output

输出fib(n)的值。


Example Input

7


Example Output

13

Hint

 

Author






参考代码


#include
int fib(int n)
{
    int y;
    if(n == 1 || n == 2)
    {
        y = 1;
    }
    else
    {
        y = fib(n - 1) + fib(n - 2);
    }
    return y;
}
int main()
{
    int n;
    scanf("%d",&n);
    printf("%d\n",fib(n));
    return 0;
}


你可能感兴趣的:(SDUTOJ,实验5-函数的运用)