我正在C中实现一个小型益智游戏,我需要获得4个箭头的扫描码
键。实际上,在C编程中我实现了
益智游戏,我们需要获得箭头键的扫描码
我必须使用用户定义的getkey()
函数
功能。但我不知道这个getkey()
函数的格式是什么。
请告诉我一个简单的方法来获取箭头键的扫描码并详细说明。我正在使用turbo C而且我知道它已经老了但我仍然想要它。
答案 0 :(得分:1)
试试这个:
#include <conio.h>
#include <stdio.h>
int main()
{
int c = 0;
while (c != EOF)
{
c = _getch();
printf("%d\n",c);
}
return 0;
}