返回列表 發帖

費氏數列2

設計一個程式,讓電腦顯示費氏數列的第1項到第10項的數值
May

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.      int x=1, y=1, z;
  6.      cout<<x <<" "<<y;
  7.      for(int i=3; i<=10; i++)
  8.      {
  9.          z=x+y;
  10.          cout<<" "<<z;
  11.          x=y;
  12.          y=z;
  13.      }
  14.      system("pause");
  15.      return 0;
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.      int f1=1 , f2=1 ,f3;
  6.      cout<<f1<<" "<<f2;
  7.      for(int i=3; i<=10; i++)
  8.      {
  9.       f3=f1+f2;
  10.       cout<<"  "<<f3;
  11.       f1=f2;
  12.       f2=f3;        
  13.      }  
  14.      
  15.      system("pause");
  16.      return 0;
  17. }
複製代碼

TOP

返回列表