[求助]用递归的方法求Fibonacci的问题
#include<conio.h>#include<math.h>
#include<stdio.h>
int fun(int t)
/*********************found**************/
{
int c;
if(t==0)c=0;
else if (t==1)c=1;
else c=fun(t-1)+fun(t-2);
return c;
}
/****************found*************/
main()
{
int n;
clrscr();
n=1000;
printf("n=%d,f=%d\n",n,fun(n));
}
用tc make 一下提示正确但是只要一运行tc就黑屏没反映了.求那位大侠帮忙看下感激不尽