C语言常用的小程序代码
函数1、Fibonacci函数(递归)#include"stdio.h"int fo(int n){ int f; if(n==2||n==1) f=1; else f=fo(n-1)+fo(n-
C语言常用的小程序代码