刚开始使用eclipse的初学者c ++教程。我正在使用mac,因此在创建新项目时,我选择了工具链' macxxx"一些东西。在视频中使用了不同的视频,因为它是在Windows中完成的。
我尝试过运行这个超级简单的程序:
#include <iostream>
using namespace std;
int main() {
cout <<'C++ is FUN'\n;
return 0;
}
当我点击锤子来构建它时,我只得到3个错误:
符号&#39; cout&#39;无法解决firstprogram.cpp语义错误
都与此类似。 我该如何解决这个问题?
答案 0 :(得分:0)
以下代码是否也会产生错误?
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!";
}
您可以在<< endl
之后使用"Some text to display"
结束当前行。所以它看起来像
cout << "hello there " << endl;