我编译了程序但在编译后无法看到结果,因为控制台屏幕在秒内闪烁。
#include "stdafx.h"
#include <stdlib.h>
int main(int argc, char* argv[])
{
printf("Hello World!\n");
system("pause");
return 0;
}
答案 0 :(得分:1)
您可以编写一些代码来从控制台窗口中读取字符。这样,控制台应用程序就不会在你向它写一个字符之前退出。
检查此答案:How to stop C++ console application from exiting immediately?