原创 C语言中的暂停

2008-4-10 00:37 4035 7 7 分类: 软件与OS

很多C语言初学者的调试时,往往没看到结果程序就退出了,据我所知的方法主要有以下几种


方法一:
#include <dos.h>
int main()
{
system("pause");//利用了DOS命令
return 0;
}


方法二:
#include  <stdio.h>
int main()
{
getchar();//须按回车键结束,不是任意键
return 0;
}


方法三:
#include <conio.h>
int main()
{
getch();//按任意键退出
return 0;
}


方法四:
#include <conio.h>
int main()
{
while(!kbhit());//可以用其它的循环


return 0;
}


方法五:增加断点,只适用于调试


==============================


还有吗?请留言告诉我!

文章评论0条评论)

登录后参与讨论
我要评论
0
7
关闭 站长推荐上一条 /2 下一条