关于按键的疑惑,与无奈
假如我想使用kbhit函数,定义按上键,输出老虎,按下输出鸡,按左输出杠子,按右输出虫,怎么编写啊或者是对应的图片,原详解,小弟,不懂啊
#include<conio.h>
#include<stdio.h>
int main()
{
char ch;
while (1)
{
if(kbhit())
{
ch=getch();
switch(ch)
{
case 'w':
printf("老虎\n");
break;
case 'a':
printf("鸡\n");
break;
case 'd':
printf("杠子\n");
break;
case 's':
printf("虫\n");
break;
default:
break;
}
}
}
return 0;
}
w:上 s:下 a:左 d:右