C语言旅途之调用递归函数来求斐波那契序列

Ⅰ、简单的入门: ①、//代码摘下直接可以运行 /求斐波那契序列第n项/ #include<stdio.h> int main() { printf(“please input the number of n\n”); int n; scanf("%d",&n); int fabbicc(int); printf(“the number of %d is:%d\n”,n,fabbicc(n));
相关文章
相关标签/搜索