[ 编程题 ] 循环

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