返回列表 發帖
  1. /*11. 印出費式數列*/
  2. #include<iostream>
  3. #include <cstdlib>
  4. using namespace std;

  5. int mailn()
  6. {  int x;
  7.     cout << "Please enter a number: " << endl;
  8.     cin >> x;
  9.    
  10.     long n(x);
  11.    
  12.     n[0] = 1;
  13.     n[1] = 1;
  14.     n[2] = 0;
  15.    
  16.       

  17.     cout << "1" << endl;

  18.     cout << "1" << endl;
  19.    
  20.     for(int i =2 ; i <x ; i++)
  21.     {
  22.        n[i]=n[i-2]+n[i-1];
  23.        cout << n[i] << endl;   
  24.     }
  25.     system("pause") ;
  26.     return 0;
  27. }
複製代碼
張雅淳

TOP

返回列表