程序后如何关闭控制台窗口?

时间:2016-02-13 20:57:11

标签: c++ console termination

我试图在执行后创建一个关闭控制台窗口的程序。但它输出了这个:

(the program output)
--------------------------------
Process exited after 15.7973 seconds with return value 0
Press any key to continue . . .

我不想看到此消息,我只想制作完全关闭窗口的程序。

我的计划结束:

   ...
   if(getch==116){
     ...
   }
   system("pause >nul");
   return 0;
}

我正在使用Dev-C ++。

2 个答案:

答案 0 :(得分:0)

通过在IDE外部双击运行exe,或者在使用F5的调试模式下运行时,通常会关闭控制台窗口。 避免使用系统(“暂停”)或系统(“暂停> NULL”)。 Avoiding "Press any key to continue" when running console application from Visual Studio

答案 1 :(得分:0)

删除此行:

system("pause >nul");