Board logo

標題: 費氏數列2 [打印本頁]

作者: may    時間: 2012-7-7 17:00     標題: 費氏數列2

設計一個程式,讓電腦顯示費氏數列的第1項到第10項的數值
作者: t2364705    時間: 2012-7-7 17:01

  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. }
複製代碼

作者: 尤泓鈞    時間: 2012-7-7 17:02

  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. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2