我试图制作一个程序,该程序输入用户密码并将密码存储为用户输入的字符串,但显示应包含星号,使用 getch() 函数。我被这个迷惑了。如果有人可以帮忙?
问问题
4488 次
1 回答
2
假设您在 Windows 上运行并且您的编码是 ASCII
试试这个:
#include <stdio.h>
#include <string.h>
#include <conio.h>
int main()
{
char buffer[256] = {0};
char password[] = "password";
char c;
int pos = 0;
printf("%s", "Enter password: ");
do {
c = getch();
if( isprint(c) )
{
buffer[ pos++ ] = c;
printf("%c", '*');
}
else if( c == 8 && pos )
{
buffer[ pos-- ] = '\0';
printf("%s", "\b \b");
}
} while( c != 13 );
if( !strcmp(buffer, password) )
printf("\n%s\n", "Logged on succesfully!");
else
printf("\n%s\n", "Incorrect login!");
return 0;
}
于 2013-06-16T07:03:58.520 回答