我正在尝试使程序运行。当我在win32 project / .cpp文件中尝试Hello World时,出现一堆错误
1> ------构建开始:项目:HelloWorld3,配置:调试Win32 ------
1>正在编译...
1> hello.cpp
1> ... \ projects \ helloworld3 \ helloworld3 \ hello.cpp(7):错误C2065:“cout”:未声明的标识符
1> ... \ projects \ helloworld3 \ helloworld3 \ hello.cpp(7):错误C2001:常量中的换行符
1> ... \ projects \ helloworld3 \ helloworld3 \ hello.cpp(8):错误C2143:语法错误:缺少';'在“返回”之前
1>构建日志保存在“文件:/ ... \ Projects \ HelloWorld3 \ HelloWorld3 \ Debug \ BuildLog.htm”中
1> HelloWorld3-3个错误,0个警告
#include <iostream>
int main()
{
cout <<"Hello World!<<endl;
return 0;
}
最佳答案
cout在 namespace “std”中,因此您有两个选择:
std::cout <
命名空间标准
使用命名空间std;
关于c++ - 来自简单Visual C++项目的编译器错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1089646/