返回列表 發帖
  1. #include<iostream>
  2. #include<cstdio>
  3. using namespace std;

  4. long double fib(int);

  5. int main()
  6. {
  7.         int f;
  8.         cout<<"請輸入欲推算的費氏數列項次: ";
  9.         cin>>f;
  10.         cout<<"費氏數列中第"<<f<<"個項次的值為"<<fib(f)<<endl;

  11.   
  12.        
  13.        
  14.         system("pause");
  15.         return 0;
  16. }

  17. long double fib(int n)
  18. {
  19.         if(n<=1)
  20.         return n;
  21.         else if(n<0)
  22.         while(1)
  23.         cout<<'\a';
  24.         else
  25.         return fib(n-1)+fib(n-2);
  26.        
  27. }
複製代碼

TOP

返回列表