C语言 如何不回显密码 20

#include<stdio.h>#include<string.h>intmain(){chara[10]="qwe123",b[10];inti;puts("请输入六... #include<stdio.h>
#include<string.h>
int main()
{char a[10]="qwe123",b[10];
int i;
puts("请输入六位密码:\n");
gets(b);
for(i=0;i<6;i++)
if(a[i]!=b[i]) break;
if(i!=6) {puts("密码错误!退出!");return 1;}
puts("密码正确!");
return 0;
}
输入显示星号,怎么弄 谢谢了
展开
 我来答
a1012144015
推荐于2017-05-19 · TA获得超过6415个赞
知道大有可为答主
回答量:9038
采纳率:40%
帮助的人:1355万
展开全部
#include <unistd.h>
#include<stdio.h>
#include <termios.h>
char Getch()
{
char ch;
struct termios oldt, newt;

tcgetattr(STDIN_FILENO, &oldt);
newt = oldt;
newt.c_lflag &= ~(ECHO|ICANON);
tcsetattr(STDIN_FILENO, TCSANOW, &newt);
ch = getchar();
tcsetattr(STDIN_FILENO, TCSANOW, &oldt);
return ch;
}
void getpasswd(char *p)
{
int i=0;
printf("password:");

while((*(p+i)=Getch())!='\n')
{
putchar('*');
i++;
}
*(p+i) = '\0';
}
int main()
{
char a[10];
getpasswd(a);
printf("%s",a);
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式