为什么按ESC键不起作用呢?
#include <stdio.h>#define ESC 0x1b
int main(int argc,char *argv[])
{
char ch;
ch = getchar();
switch(ch)
{
case '1':
printf("press 1\n");
break;
case '2':
printf("press 2\n");
break;
case ESC:
printf("press ESC\n");
break;
}
return 0;
}
按ESC不起作用?