其他分享
首页 > 其他分享> > 实现按下esc按键暂停,再按下开始(简单易懂)

实现按下esc按键暂停,再按下开始(简单易懂)

作者:互联网

#include <stdio.h>

#include <conio.h>

void main()
{

        char key;

        int esc=1;

        if(kbhit())//检测是否有键盘输入

        {

                key=_getch();

                if(key==27)//esc键的ASCII为27
                {

                        while(esc)

                        {

                                if(kbhit())

                                {   

                                        if((key=_getch())==27) 

                                                {esc=0;break;}

                        }

                }

        }

}

//作者原创,侵权必究

标签:getch,27,kbhit,按下,esc,key,易懂,include
来源: https://blog.csdn.net/qq_60957726/article/details/120358917