求第n個斐波那契數列(不考慮溢出)

斐波那契數列是列如:1,2,1,3,5,8,13,21,34```````````````的數列 (1)用遞歸方式實現 #include <stdio.h> #include <stdlib.h> int Fib(int n){ if (n == 1 || n == 2){ return 1; //如果第一項和第二項是1和2,就返回1 } return Fib(n - 1) + Fib(n - 2
相關文章
相關標籤/搜索