可以通过system ("pause");实现暂停,应包括stdlib.h头文件。
创新互联专业为企业提供四平网站建设、四平做网站、四平网站设计、四平网站制作等企业网站建设、网页设计与制作、四平企业网站模板建站服务,10多年四平做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。
还可以通过使用getch()和getchar()函数实现,注意应该相应地包括conio.h和stdio.h文件,getch()为非标准函数,需要注意程序的移植性。
可以在main()函数的最后添加一句getchar()或者system("pause");就能让程序暂停,不过在TC里使用system("pause");需要引入头文件#include
stdlib.h
#include stdio.h
#include stdlib.h
int main()
{
printf("Hello World !")
system("pause");//这行就表示暂停效果~~~ 不过要引用 #include stdlib.h
return 0;
}
#includestdio.h
int main()
{
printf("请按回车\n");
getchar();//这里等你按回车
printf("请按回车\n");
getchar();//这里等你按回车
printf("请按回车\n");
getchar();//按回车结束
return 0;
}
你那个开始我不懂什么意思 ?是调用函数 ?????