在C语言中,可以使用以下方法来判断按键的状态:
#include <conio.h>
#include <stdio.h>
int main() {
int key;
while (1) {
key = _getch();
if (key != 0) {
printf("Key pressed: %c\n", key);
}
}
return 0;
}
#include <windows.h>
#include <stdio.h>
int main() {
short key;
while (1) {
for (int i = 0; i < 256; i++) {
key = GetAsyncKeyState(i);
if (key & 0x8000) {
printf("Key pressed: %c\n", i);
}
}
}
return 0;
}
以上是两种常见的方法来判断按键的状态。需要注意的是,以上方法在Windows平台上有效,不同的操作系统可能会有不同的方法来实现按键状态的判断。