返回列表 發帖
本帖最後由 林宇翔 於 2014-8-30 16:45 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int g(int);
  5. int main()
  6. {
  7.     int a;
  8.     cout<<"請輸入費數列的項次: ";
  9.     cin>>a;
  10.     cout<<"費數列中的第" << a<<"個像次的數是"<<g(a) << endl;
  11.     system("pause");     
  12.     return 0;
  13. }
  14. int g(int a)
  15. {
  16.      if(a <= 1)
  17.                  return a;
  18.          else
  19.                  return fei(n-1)+fei(n-2);
  20. }
複製代碼

TOP

返回列表