令我费解的c语言编程题目...菜鸟望给于指点!
请编写函数fun(),它的功能是求fibonacci数列中小于t的最大的一个数,结果由函数返回。其中fibonacci数列F(n)的定义为:
F(0)=0, F(1)=1
F(n)=F(n-1)+F(n-2)
例如: t=1000时,函数值为987.
#include <conio.h>
#include <math.h>
#include <stdio.h>
int fun(int t)
{int a=1,b=1,c=0,i;
{c=a+b;
a=b;
b=c;
}
while (c<t);
c=a;
return c;
}
main()
{int n;
clrscr();
n=1000;
printf("n=%d,f=%d\n",n,fun(n));
}
怎么就无法按要求运行呢?