下面是用递推法计算菲波那(Fibonacci)级数第n项的函数,请填补空缺。intf(intn)intf0=0,fl=1,f,i;if(n==0)return0;if(n==1)return1;for(i=2;i
A.f=f1
B.f1=f0
C.f=f0
D.f1=f
正确答案是D