程序暂停:
在C++里使用
#include
getch();
或者
#include
getchar();
在windows中,还可以使用
#include
system("pause");
如果单纯想要查看结果,还可以使用sleep
windows中
#include
Sleep(int);
在linux中
#include
sleep(int);
1.程序末尾即return 0;前,加 while(1);
2.程序末尾即return 0;前,加 scanf("\n");(需加头文件
3.程序末尾即return 0;前或者需暂停处,加 system(“pause”);(需加头文件
判断就行了嘛
for (int i = 0; i < 3, i++)
{
if (i = 2)
{
getch();
}
}
system("pause");
有时得加头文件#include
用getch需要包含头文件#include