標題:
費氏數列2
[打印本頁]
作者:
may
時間:
2012-7-7 17:00
標題:
費氏數列2
設計一個程式,讓電腦顯示費氏數列的第1項到第10項的數值
作者:
t2364705
時間:
2012-7-7 17:01
#include<iostream>
using namespace std;
int main()
{
int x=1, y=1, z;
cout<<x <<" "<<y;
for(int i=3; i<=10; i++)
{
z=x+y;
cout<<" "<<z;
x=y;
y=z;
}
system("pause");
return 0;
}
複製代碼
作者:
尤泓鈞
時間:
2012-7-7 17:02
#include<iostream>
using namespace std;
int main()
{
int f1=1 , f2=1 ,f3;
cout<<f1<<" "<<f2;
for(int i=3; i<=10; i++)
{
f3=f1+f2;
cout<<" "<<f3;
f1=f2;
f2=f3;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2