在 C语言编程中用户输入密码怎么回显成*,且当密码不正确时要提示重新输入!? 5
3个回答
展开全部
#include<stdio.h>
#include<string.h>
#include<conio.h>
struct user
{
char name[20];
char account[10];
char key[6];
}my;
int main()
{
struct user *p=&my;
short i;
printf("please input your name:\n");
gets(p->name);
printf("please input your account(10 bits):\n");
gets(p->account);
printf("please input your key(6 bits):\n");
for(i=0;i<6;i++)
{
p->key[i]=getch(); // 不回显
printf("*"); // 以“*”证明确实有输入
}
p->key[i]='\0';
getch();
printf("\npress any key to show the information:\n");
getch();
printf("the information is:\nname:%s account:%s key:%s",p->name,p->account,p->key);
return 0;
}
不正确重新输入的问题自己来吧 懒的写了
#include<string.h>
#include<conio.h>
struct user
{
char name[20];
char account[10];
char key[6];
}my;
int main()
{
struct user *p=&my;
short i;
printf("please input your name:\n");
gets(p->name);
printf("please input your account(10 bits):\n");
gets(p->account);
printf("please input your key(6 bits):\n");
for(i=0;i<6;i++)
{
p->key[i]=getch(); // 不回显
printf("*"); // 以“*”证明确实有输入
}
p->key[i]='\0';
getch();
printf("\npress any key to show the information:\n");
getch();
printf("the information is:\nname:%s account:%s key:%s",p->name,p->account,p->key);
return 0;
}
不正确重新输入的问题自己来吧 懒的写了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
赞同2楼的,他剩下的部分,就是你给加一个while()循环(或者goto语句)来判断你输入的p->key[]是否与你的预设的密码一样
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以固定号码啊,叫这个秘密等于*,通过if语句进行判断啊。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询