我在Ubuntu中安装了Eclipse。我正在尝试运行你好的世界计划:
#include <iostream>
using namespace std;
int main() {
cout << "!!!Hello World!!!!" << endl; // prints !!!Hello World!!!
return 0;
}
程序运行正常,但在IDE中我有错误:
Unresolved inclusion: <iostream>
Symbol 'std' could not be resolved
Symbol 'cout' could not be resolved
Symbol 'endl' could not be resolved
我认为包含有问题,但是什么?
答案 0 :(得分:1)
你安装了gcc吗?
sudo apt-get install gcc-<version>
顺便说一句,here应该是您问题的答案。
修改强>
如果您已经安装了gcc,可能必须指定 iostream.h 所在的文件系统路径。你必须在eclipse设置中添加include路径,看看here。