0

所以我刚刚下载了适用于 C 和 C++ 的 Eclipse 开普勒,然后我尝试制作一个简单的 HelloWorld 应用程序,

#include <iostream>
using namespace std;

int main()
{
    cout << "Hello World!!!" << endl; // prints Hello World!!!
    return 0;
}

但我收到一条错误消息:

Program "g++" not found in PATH
Program "gcc" not found in PATH
Program "make" not found in PATH
Symbol 'cout' could not be resolved
Symbol 'endl' could not be resolved
Symbol 'std' could not be resolved
4

1 回答 1

-1

您需要右键单击属性并更新路径。

于 2013-10-06T13:51:41.513 回答