回复 楼主 小小小小小黄
//斐波那契数列。输出斐波那契数列的前40项。
//斐波那契数列数列的特征是:前两项为1,以后每一项为前两项只和。
#include<iostream.h>
#include<iomanip.h>
void main()
{
int a=1,b=1,c;
cout<<setw(8)<<left<<a
<<setw(8)<<left<<b;
for(int i=1;i<=38;i++)
{
c=a+b;
a=b;
b=c;
cout<<setw(8)<<left<<c;
}
}
编译时的错误:
c:\documents and settings\小黄黄黄黄黄\桌面\c++程序题\ex4.cpp(9) : error C2065: 'left' : undeclared identifier
Error executing cl.exe.