Eclipse C ++默认“Hello World”错误

时间:2014-01-14 04:42:45

标签: c++ eclipse default

这是我在这里的第一篇文章,很抱歉,如果有点不好:我有问题。当我尝试在Eclipse中创建一个Hello World C ++项目时(第一次尝试使用c ++)我尝试构建项目并运行它,但它说有错误。这是代码:

#include <iostream>
using namespace std;

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

此处还有错误的屏幕截图:

enter image description here

我试过寻找但找不到解决方案,所以如果我因为一个总菜鸟看起来很蠢,那就很抱歉:\所有和任何帮助都表示赞赏。 :)谢谢!

1 个答案:

答案 0 :(得分:1)

代码对我来说很好看。我认为你没有正确地在Eclipse中设置C ++。

按照分步设置here进行操作。您应该能够在正确设置后进行处理。

enter image description here