请问c++中的哪个语句可以让该程序暂停处理(就是那种可以按任意键继续的)

2024-11-25 10:20:09
推荐回答(5个)
回答1:

C++是C的扩展,所以C中可以使用的在C++中也可以使用。

回答2:

system("pause");

回答3:

getchar();**

回答4:

程序暂停:
在C++里使用
#include
getch();
或者
#include
getchar();

在windows中,还可以使用
#include

system("pause");

如果单纯想要查看结果,还可以使用sleep
windows中
#include

Sleep(int);
在linux中
#include
sleep(int);

回答5:

想看哪里设个断点断在那里,然后按键继续执行下去