求助: 键盘 按键编码 为什么是重码?
求助: 键盘 按键编码 F1~~F10 为什么是重码?程序代码:
#include<iostream> #include<conio.h> using namespace std; int main() { char key = 0; while(1) { key = _getch(); if(key != 0) { if(key > 0) printf("key = %d\n",key); else printf("key = %d ",key); key = 0; } } return 0; }