们--加强斐波那契

们--加强斐波那契

Time Limit: 1000MS  Memory Limit: 65536KB
Submit  Statistic

Problem Description

对于斐波那契数列想必各位已经见过了。这里给出一个加强版。
F[i] = i (i <= 3);
F[i] = F[i-1] + F[i-2] + F[i-3](i >= 4);

Input

多组输入。每组输入一个整数n (1<= n && n <= 30)。

Output

每组数据输出一个整数,代表F[n]。

Example Input

1
4

Example Output

1
6
#include
int main()
{
    int n,i;
    int f[33];
    f[1]=1;
    f[2]=2;
    f[3]=3;
    while(scanf("%d",&n)!=EOF)
    {
        for(i=4; i<=n; i++)
        {
            f[i]=f[i-1]+f[i-2]+f[i-3];
        }
        printf("%d\n",f[n]);
    }
    return 0;
}

你可能感兴趣的:(提高实验3_递推)