我想在"输出窗口"中打印并查看消息。在Visual Studio 2013中。运行此C ++代码后:
#include <iostream>
using namespace std;
int main(){
cout << "hello world";
}
我在输出窗口中看不到该消息。相反,一个黑色的窗口,其中的消息&#34;你好世界&#34;写得好像是立即关闭。
我禁用了#34;将所有输出文本重定向到立即窗口&#34;。但是,它仍然没有打印消息。
答案 0 :(得分:0)
此行为是预期的,因为程序正在完成其功能。您可以将代码更改为:
#include <iostream>
using namespace std;
int main(){
cout << "hello world";
system("PAUSE");
}
这将使窗口暂停,直到你按一个键继续,但是在打印hello world之后程序运行完毕并将关闭。