C++是C的扩展,所以C中可以使用的在C++中也可以使用。
system("pause");
getchar();**
程序暂停:
在C++里使用
#include
getch();
或者
#include
getchar();
在windows中,还可以使用
#include
system("pause");
如果单纯想要查看结果,还可以使用sleep
windows中
#include
Sleep(int);
在linux中
#include
sleep(int);
想看哪里设个断点断在那里,然后按键继续执行下去