0
我使用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
任何幫助嗎?謝謝
有一種類型'#包括'應該是'#包括' 也可以嘗試,而不是GCC –
olevegard
2013-05-02 15:08:48
你創建項目爲'C'或'C++'項目與G ++編譯? – 2013-05-02 15:08:57
我原本有'包括',但它沒有工作。我仍然得到相同類型的錯誤 –
2013-05-02 15:10:18