0

我正在运行 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;
}

谢谢你。

4

1 回答 1

1

在 Eclipse 配置环境中,在 $PATH 变量中添加 g++ 的路径

于 2012-11-04T16:50:24.343 回答