递归函数求斐波那契数列的前n项 递归函数求斐波那契数列的前n项 实验平台:codeBlocks #include<stdio.h> //函数定义 int fib(int m) { //前两项为 1 1 if(m==1 || m==2) return 1</