SDUT-2400 高中数学?

SDUT-2400 高中数学?_第1张图片

Code

#include 

int f(int x)
{
    if(x == 1)
        return 0;
    else if(x == 2)
        return 1;
    else
        return 4 * f(x-1) - 5 * f(x-2);
}

int main()
{
    int x,i;
    scanf("%d",&i);
    while(i--)
    {
        scanf("%d",&x);
        printf("%d\n",f(x));
    }
    return 0;
}
反思:函数练习,按照题意写出函数即可。

你可能感兴趣的:(C语言基础题)