C语言如何判断输入的是否是上下左右键 ? 拜托大神教教我。

2024-12-01 01:33:28
推荐回答(2个)
回答(1):

你可以用getch()函数获取按键的内容,然后再判断!具体的示例代码看我的知道回答吧!
http://zhidao.baidu.com/question/1511601413336299380

回答(2):

int main()
{
char direction;
getch();
direction = getch();
switch(direction)//判断方向键
{
case 72: printf(" 向上");break;
case 80: printf(" 向下");break;
case 75: printf(" 向左");break;
case 77: printf(" 向右");break;
default: break;
}
return 0;
}