用C语言程序编写用户名密码 程序

限定输入用户名密码三次错误则退出上述为进入一个管理系统... 限定输入用户名密码三次错误 则退出
上述为进入一个管理系统
展开
 我来答
百度网友340ff0d
2009-06-07 · TA获得超过105个赞
知道答主
回答量:65
采纳率:0%
帮助的人:50.1万
展开全部
#include<stdio.h>
#include<string.h>
void main()
{
int i,flag1,flag2;
char name[20]="lushan",password[10]="123456";
char person[20],password1[10];
for(i=0;i!=3;)
{
printf("Please input the name:\n");
gets(person);
flag1=strcmp(person,name);
printf("Please input the password:\n");
gets(password1);
flag2=strcmp(password,password1);
if(flag1==0&&flag2==0)
{
printf("Pass successfully!");
break;
}
else
{
printf("You have enter the wrong name or password!\n");
i++;
}
}
}
451144426
2009-06-07 · TA获得超过688个赞
知道小有建树答主
回答量:404
采纳率:0%
帮助的人:266万
展开全部
#include "stdio.h"
#include<string.h>
#include<bios.h>
main()
{
char code1[7];
char code2[7];
int i=0;
printf("please input password with six numbers:");
do{ code1[i]=bioskey(0);
printf("*");
}while(i++!=5);
code1[i]='\0';

printf("\n\nplease input password again:");
i=0;
do{ code2[i]=bioskey(0);
printf("*");
}while(i++!=5);

code2[i]='\0';
if(strcmp(code1,code2)==0) printf("\nYES");
else printf("\nerror");

getchar();

}

输入是3次的话自己加个循环哈;
呵呵
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式