可以在主函数的末尾(return 0;之前)加上system("pause");或者getchar();之类的语句。
也可以在主函数的最后一行语句上加一个断点(光标移动到这一行,再按F9).
你可以在main函数最后加上一个getchar();
或者system("pause");
#include
using namespace std ;
int main(void)
{
cout << "Hello World" << endl ;
system("pause"); //暂停
return 0 ;
}