c++ 编程 怎么编写“程序运行后,按任意键结束再按就继续”
1个回答
展开全部
程序无所谓,主要是 _getch,别的控制之类的随意。
#include <CONIO.H>
#include <DOS.H>
int main(int argc, char* argv[])
{
//testCustomMathFunc();
for(int i = 0; i<500; i++)
{
printf("%d, ", i);
//如果需要,可以延时,每秒输出一个数字,免得太快看不清
if(_kbhit()) //如果输入一个字符
{
printf("\n"); //此处只是为了看的明显
system("pause"); //暂停,按任意键继续
/*
while(!_getch());//如果不用system函数,这也可以
*/
}
}
printf("\n");
return 0;
}
#include <CONIO.H>
#include <DOS.H>
int main(int argc, char* argv[])
{
//testCustomMathFunc();
for(int i = 0; i<500; i++)
{
printf("%d, ", i);
//如果需要,可以延时,每秒输出一个数字,免得太快看不清
if(_kbhit()) //如果输入一个字符
{
printf("\n"); //此处只是为了看的明显
system("pause"); //暂停,按任意键继续
/*
while(!_getch());//如果不用system函数,这也可以
*/
}
}
printf("\n");
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询