我是C ++的新手并且下载了eclipse和C ++开发环境。我使用预设的hello world程序开始,但即使窗口出现,我没有触及任何东西,它都准备好给我5个错误,当我尝试构建并运行它时,它表示二进制不能找到。我在Windows上运行,并准备好尝试切换二进制Pharser。这是代码
#include <iostream> // it gives me an error on this line
using namespace std;
int main() { // an error on this line
cout << "!!!Hello World!!!" << endl; // errors on this line
return 0; // and errors on this line
}