#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;}
}
}
}
}
//作者原创,侵权必究