gpt4 book ai didi

c - 如何知道用户按下了哪个键?

转载 作者:太空宇宙 更新时间:2023-11-04 08:48:03 29 4
gpt4 key购买 nike

我有一个 C 语言的控制台应用程序。

我正在尝试检测用户按下了哪个键:

if (...)
printf ("Shift + Right Arrow");
if (...)
printf ("Right Arrow");
if (...)
printf ("中"); // (Big5(CP950): 0xA4 0xA4)
if (...)
printf ("文"); // (Big5(CP950): 0xA4 0xE5)
....

我如何检测用户按下了哪个按钮?

最佳答案

#include <stdio.h>
#include <Windows.h>
#include <Winuser.h>

BOOL isPressShift(){
return (SHORT)0x8000 & GetKeyState( VK_SHIFT );
}

BOOL isPressRightArrow(){
return (SHORT)0x8000 & GetKeyState( VK_RIGHT );
}


int main(void){
// ... do something
if(isPressShift() && isPressRightArrow())
printf("Shift + Right Arrow\n");
if(isPressRightArrow())
printf("Right Arrow\n");
return 0;
}

关于c - 如何知道用户按下了哪个键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20867647/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com