在vc++6.0中类似于turbo c中的bioskey()函数是什么?跪求
答案:2 悬赏:10 手机版
解决时间 2021-01-02 05:50
- 提问者网友:佞臣
- 2021-01-01 22:58
在线等能详细点吗?
最佳答案
- 五星知识达人网友:鸠书
- 2021-01-01 23:31
换个方式,用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() );
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯