C++中那个函数和C中的bioskey()作用一样?
我想用C++写个俄罗斯方块的游戏,但是对于处理键盘接收值时,C中有bioskey(),但C++中就好像用不成,而且还得包含个头文件,<bios.h>,但是C++中不包含此...
我想用C++写个俄罗斯方块的游戏,但是对于处理键盘接收值时,C中有bioskey(),但C++中就好像用不成,而且还得包含个头文件,<bios.h>,但是
C++中不包含此文件啊,请高手指点。 展开
C++中不包含此文件啊,请高手指点。 展开
展开全部
换个方式,用kbhit(),配合GetKeyState()即可获得你想要的结果
例如:
#include <conio.h>
#include <stdio.h>
int main( void )
{
while( !_kbhit() )
_cputs( "Hit me!! " );
printf( "\nKey struck was '%c'\n", _getch() );
}
例如:
#include <conio.h>
#include <stdio.h>
int main( void )
{
while( !_kbhit() )
_cputs( "Hit me!! " );
printf( "\nKey struck was '%c'\n", _getch() );
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2020-08-25
展开全部
上下左右可以这样:
#include<stdio.h>
#include <conio.h>
int main()
{
while (1)
{
if(getch()==224)
{ switch (getch())
{
case 72: printf("The key you Pressed is : ↑ \n");break;//Up
case 80: printf("The key you Pressed is : ↓ \n");break;//down
case 75: printf("The key you Pressed is : ← \n");break;//left
case 77: printf("The key you Pressed is : → \n");break;//right
default:break;
}
}else{printf("Not direction keys \n");}
}
#include<stdio.h>
#include <conio.h>
int main()
{
while (1)
{
if(getch()==224)
{ switch (getch())
{
case 72: printf("The key you Pressed is : ↑ \n");break;//Up
case 80: printf("The key you Pressed is : ↓ \n");break;//down
case 75: printf("The key you Pressed is : ← \n");break;//left
case 77: printf("The key you Pressed is : → \n");break;//right
default:break;
}
}else{printf("Not direction keys \n");}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询