69.请编写函数fun,它的功能是:求Fibonacci数列中大于t的最小的一个数,结果由函数返回。

69.请编写函数fun,它的功能是:求Fibonacci数列中大于t的最小的一个数,结果由函数返回。其中Fibonacci数列F(n)的定义为:
F(0)=0,F(1)=1
F(n)=F(n-1)+F(n-2)
例如:当t=1000时,函数值为1597。

#include 
#define N 5000;//给出5000以内的Fibonacci数字 
int fun(int t){
   
     
	int a=0;
	

你可能感兴趣的:(C试题,程序设计,c语言,算法)