Netbeans C++程序没有终端输出
这不是一个奇怪的程序。这是一个简单的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试以下操作:
项目属性 ->运行->控制台类型
并选择标准输出
。如果已选择此选项,请使用
内部终端
进行测试。You may try this:
Project properties -> Run -> Console Type
and selectStandard Output
there.If this is already selected test with
Internal Terminal
.尝试安装 xterm,这对我有用。 (在 fedora 18 上,但 Ubuntu 应该类似)
或
Try installing xterm, that worked for me. (On fedora 18, but Ubuntu should be similar)
or