写一个程序用递归法打印斐波那契数列?

参考以下代码实现:

#include<stdio.h>      
#include<conio.h>      
void printFibonacci(int n) // function to calculate the fibonacci series of a given number.  
{      
static int n1=0,n2=1,n3;    // declaration of static variables.  
    if(n>0){      
         n3 = n1 + n2;      
         n1 = n2;      
        n2 = n3;      
         printf("%d ",n3);      
         printFibonacci(n-1);    //calling the function recursively.  
    }      
}      
void main(){      
    int n;      
    clrscr();      
    printf("Enter the number of elements: ");      
    scanf("%d",&n);      
    printf("Fibonacci Series: ");      
    printf("%d %d ",0,1);      
    printFibonacci(n-2);//n-2 because 2 numbers are already printed      
    getch();      
}

相关文章

在C语言中声明变量:变量声明仅在编译时向编译器提供以给定类...
全局变量和静态全局变量有不同的联系。 这就是全局变量可以在...
存储类决定程序中变量或函数的范围(生命周期)和范围(可见性)...
在C语言中,外部静态变量有内部链接,内部静态变量没有链接。...
让我们先来看一下 typedef 和宏的简短描述,以了解它们之间的...
编译器错误。 解释:typedef 已被视为部分存储类,因此不能一...