kbhit

2018-11-11 15:44 更新

 原型:extern int kbhit(void);
 
 用法:#include <stdio.h>
 
 功能:檢測按鍵
 
 說明:檢測鍵盤是否有鍵按下。
       如果有鍵按下,則返回對應(yīng)鍵值;否則返回零。
       kbhit不等待鍵盤按鍵。無論有無按鍵都會(huì)立即返回。
 
 舉例:

     // kbhit.c
     
     #include <stdio.h>
     main()
     {
       int i=0;
       
       clrscr();
       
       while(!kbhit())
       {
         clrscr();
         printf("%05d",i++);
       }
       
       clrscr();
       printf("End.");
       
       getchar();
       return 0;
     }      


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)