C++ NetBEAN cout 错误?

发布于 2024-10-22 03:34:10 字数 233 浏览 0 评论 0原文

#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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

快乐很简单 2024-10-29 03:34:10

您没有包含 ,因此标识符 std::cout 从未在您的程序中声明或定义。

You did not include <iostream> and thus the identifier std::cout is never declared or defined in your program.

橙味迷妹 2024-10-29 03:34:10

您包含了错误的头文件。应该是:

#include <iostream>

You're including the wrong header file. It should be :

#include <iostream>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文