如何屏蔽按键啊?
怎么才能屏蔽键盘上的一些按键!比如只允许输入数字,评比所有字符输入!~
C语言里我不知道,C++里可以
#include "iostream.h"
#include "stdlib.h"
#include "conio.h"
int main()
{
char choice;
cout<<"输入你的选择:";
cout.flush(); //清空缓冲区
while(choice = getch())
{
if(toupper(choice)>='A' && toupper(choice)<='F')
{
cerr<<choice<<endl;
if(toupper(choice) == 'F')
exit(0);
}
}
return 1;
}
这样就只有按A到F之间的字母时才会有反应按F为退出
[[it] 本帖最后由 闪闪4521 于 2008-3-29 18:37 编辑 [/it]]