在main后部加system("pause");
例如
#include
int main()
{
printf("hello,world\n");
system("pause");//
return 0;
}
在return 0; 前加 system("pause");
前面加头文件 #include
在Main函数中最后加上system("pause");
一般写在return 0;前
在cmd窗口中运行即可。
在程序后加system("pause");