C语言执行程序一闪而过的问题

解决问题方法:

方法一:getchar()


即在主函数尾部或程序最后加上getchar();

也就是接受键盘输入,这样程序就不会一闪而过,因为程序还没有执行完!

注:当代码中存在scanf()函数时,需要在getchar();前加上fflush(stdin);清除键盘缓存,以防影响getchar()的接收!

方法二:getch()


getch();的使用很简单,也是加载主函数的尾部,但其需要配合conin.h头文件使用才行!

#include

#include


void main{

……

getch();

……

}

方法三:system("pause")


system("pause");加在主函数的尾部,配合windows.h头文件使用才行

#include

#include

void main(){

……

system("pause"):

……

}




你可能感兴趣的:(C语言执行程序一闪而过的问题)