C++ NetBEAN cout 错误?
#include <cstdlib>
using namespace std;
/*
*
*/
int main(int argc, char** argv)
{
cout << "COME AT ME BRO!\n"
return 0;
}
它说 cout 无法解析标识符
C++ 代码帮助已正确设置,我只是不确定它可能是什么。
#include <cstdlib>
using namespace std;
/*
*
*/
int main(int argc, char** argv)
{
cout << "COME AT ME BRO!\n"
return 0;
}
It says cout is unable to resolve identifier
The C++ code assistance is setup properly, I'm just not sure whatelse it could possibly be.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您没有包含
,因此标识符std::cout
从未在您的程序中声明或定义。You did not include
<iostream>
and thus the identifierstd::cout
is never declared or defined in your program.您包含了错误的头文件。应该是:
You're including the wrong header file. It should be :