重新开始学习C&C++ Courage is resistance to fear, mastery of fear, not abscence of fear
//斐波那契数列 Fibonacci数列
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
long f1, f2;
int i;
f1 = f2 = ;
for (i=;i<=;i++)
{
cout << setw() << f1 << setw() << f2;
if (i % == )cout << endl; //每四个数换行
f1 = f1 + f2; //第三个数
f2 = f2 + f1; //第四个数
}
return ;
}