1.如何取得鍵盤掃描碼?
2.利用C++程式來實現
3.可附註解的話就附
2007-05-21 18:05:52 · 1 個解答 · 發問者 Leo 1 in 電腦與網際網路 ➔ 程式設計
是用Dev-C++
2007-05-22 13:29:30 · update #1
是不是這個?
//Power by Visual Studio 2005
#include
#include
#include
using namespace std;
int main(int argc, char** argv)
{
//==========START==========//
char KEY[2]={0};
cout<<"Please input any keys...\n"
<<"Press ESC to terminate."<
{
KEY[0]=_getche();
cout<<" = "<<(int)KEY[0]<
while(KEY[0]!=27);
//==========END==========//
system("PAUSE");
return EXIT_SUCCESS;
}
2007-05-22 09:02:00 · answer #1 · answered by Big_John-tw 7 · 0⤊ 0⤋