为什么cout在代码块上没有产生输出?

时间:2015-04-25 07:05:52

标签: c++ codeblocks iostream cout

#include <iostream>
using namespace std;

int main(int argc, char** argv) {

    cout << "Whatever";

    return 0;
}

enter image description here

Cout不起作用,也不起作用,也不起作用,也不起作用。此外,我检查了项目属性,调试和发布都设置为“控制台应用程序”和“最后暂停”。这毫无意义。

编辑:另外,我之前尝试过使用endl(没有结果)。

2 个答案:

答案 0 :(得分:5)

我正在撰写我的评论作为回应: 您的图像显示选项&#34; -mwindows&#34;,删除控制台,如http://www.mingw.org/wiki/FAQ所述(MinGW常见问题解答)

How do I remove DOS command windows?
    In the link step add a "-mwindows" switch to the command line.

答案 1 :(得分:0)

只需删除/取消选中-mwindows标志,然后右键单击即可重新构建您的项目。然后您只需执行该项目即可。