1. 程式人生 > >實現輸入回顯*號的函式

實現輸入回顯*號的函式

/*
在使用者輸入密碼的時候,往往都是回顯*或者其他的隱藏字元,於是:
*/

#define MAXLEN 6
char passwd[MAXLEN+1]="";

char *GetPasswd() {
unsigned char c;
int i=0;
while((c=getch())!='\r') {
if(i<MAXLEN&&isprint(c)) {
passwd[i++]=c;
putchar('*');
} else if(i>0&&c=='\b') {
--i;
putchar('\b');
putchar(' ');
putchar('\b');
}
}
putchar('\n');
passwd[i]='\0';
return passwd;
}

//****************將字串轉換成整形**************/
int Changechar(char *str) {
int num=0,k,len,j;
len=strlen(str);
for(; *str; str++) {
k=*str-'0';
j=(--len);
while(j--)k*=10;
num+=k;
}
return num; //將字元型的密碼轉換成整型
}