Netbeans C++程序没有终端输出

发布于 2024-12-02 12:43:43 字数 367 浏览 0 评论 0原文

这不是一个奇怪的程序。这是一个简单的 C++ Hello World 程序,无论出于何种原因,无论是在终端还是在输出窗口中都没有输出到终端。这是我的“代码”。

#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char** argv) {
    cout << "Hello there peeps!";
    cout << endl;
    system("pause");
    return 0;
}

在 Ubuntu 11.04 Natty 上使用 Netbeans 6.9

It's not a weird program. It's a simple C++ Hello World program, and for whatever reason there is no output to the terminal either in the terminal or in the output window. Here's my "code".

#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char** argv) {
    cout << "Hello there peeps!";
    cout << endl;
    system("pause");
    return 0;
}

Using Netbeans 6.9 on Ubuntu 11.04 Natty

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

风轻花落早 2024-12-09 12:43:43

您可以尝试以下操作:

项目属性 ->运行->控制台类型并选择标准输出

如果已选择此选项,请使用内部终端进行测试。

You may try this:

Project properties -> Run -> Console Type and select Standard Output there.

If this is already selected test with Internal Terminal.

眸中客 2024-12-09 12:43:43

尝试安装 xterm,这对我有用。 (在 fedora 18 上,但 Ubuntu 应该类似)

sudo apt-get install xterm

sudo yum install xterm

Try installing xterm, that worked for me. (On fedora 18, but Ubuntu should be similar)

sudo apt-get install xterm

or

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