使用 Eclipse 运行 Hello World 程序时出现错误。我已经安装了 MinGW 和 Cygwin,我知道我只需要一个,但我有其他编辑器使用一个而不是另一个。我检查了 GCC C++ 编译器下的路径和符号,它链接到包含包含文件的目录。但是,我仍然在包含文件中收到未解决的包含错误。我正在使用 Windows 7。我的代码:
#include <iostream>
#include <strings>
using namespace std;
int main()
{
string yourName;
cout << "Enter your name: ";
cin >> yourName;
cout << "Hello " << yourName << endl;
return 0;
}
这是详细的错误
Description Resource Path Location Type
Symbol 'cin' could not be resolved test.c /hello_world/src line 17 Semantic Error
Symbol 'cout' could not be resolved test.c /hello_world/src line 16 Semantic Error
Symbol 'cout' could not be resolved test.c /hello_world/src line 18 Semantic Error
Symbol 'endl' could not be resolved test.c /hello_world/src line 18 Semantic Error
Type 'namespace' could not be resolved test.c /hello_world/src line 10 Semantic Error
Type 'string' could not be resolved test.c /hello_world/src line 14 Semantic Error
有什么帮助吗?谢谢