[原创]欢迎提出新方法
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <string.h>
#define MAX 10
char a[MAX]="";
getpassword()
{
char c;
int count=0;
while((c=getch())!='\r')
if(c=='\b')
{
printf("\b \b");
count--;
}
else
{
a[count++]=c;
putchar('*');
}
putchar('\n');
return 0;
}
main()
{
char b[]="123";
getpassword();
if(strcmp(a,b)==0)
printf("ok");
else
printf("sorry");
getch();
}
欢迎提出新的好建议!