我正在运行 ubuntu 和 eclipse juno。我已经安装了 ctd、g++ 和 gcc。
一切正常,但是:
我有一个简单的 hello world 程序,可以编译、运行和打印,但是当我在 eclipse 中看到该项目时,我看到 std、namespace、cout 上的错误。
在我得到的错误中:在路径中找不到 g++
但 g++ 已安装。
这是代码:
#include <iostream>
using namespace std;
int main() {
cout << "!!!Hello World!!!" << endl; // prints !!!Hello World!!!
return 0;
}
谢谢你。