程序如下:
#include <iostream.h>
using namespace std;
int main()
{
cout<<"Hello!\n";
cout<<"Welcome to C++!\n";
}
在VC++ 6.0中编译错误如下:
:\My Documents\我的资料\VC++\2_1B\2_1B.CPP(2) : error C2871: 'std' : does not exist or is not a namespace
E:\My Documents\我的资料\VC++\2_1B\2_1B.CPP(7) : warning C4508: 'main' : function should return a value; 'void' return type assumed
执行 cl.exe 时出错.
2_1B.OBJ - 1 error(s), 0 warning(s)
请问这是什么原因?
千万里不及你
相关分类