C语言求助,我设置好了账号密码,运行输入的时候回显星号,但是就算密码输入正确了,还是等不进去
C语言求助,我设置好了账号密码,运行输入的时候回显星号,但是就算密码输入正确了,还是等不进去#include<stdio.h>#include<string.h>#inc...
C语言求助,我设置好了账号密码,运行输入的时候回显星号,但是就算密码输入正确了,还是等不进去#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<conio.h>
void main()
{
char a[16],b[16];
char username[]="f123";
char password[]="f321";
do
{
printf("username:");
gets(a);
printf("password:");
while(1)
{
b[16]=getch();
if(b[16]=='\r') break;
printf("*");
}
b[5]='\0';
if (strcmp(a,username)==0 && strcmp(b,password)==0)
{
printf("----欢迎登录----\n");
return;
}
else
{
printf("\n用户名或密码错误\n\n");
}
}while(!0);
} 展开
#include<string.h>
#include<stdlib.h>
#include<conio.h>
void main()
{
char a[16],b[16];
char username[]="f123";
char password[]="f321";
do
{
printf("username:");
gets(a);
printf("password:");
while(1)
{
b[16]=getch();
if(b[16]=='\r') break;
printf("*");
}
b[5]='\0';
if (strcmp(a,username)==0 && strcmp(b,password)==0)
{
printf("----欢迎登录----\n");
return;
}
else
{
printf("\n用户名或密码错误\n\n");
}
}while(!0);
} 展开
1个回答
展开全部
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<conio.h>
int main()
{
char a[16],b[16];
char username[]="f123";
char password[]="f321";
do
{
printf("username:");
gets(a);
printf("password:");
for(int i=0;;i++)
{
b[i]=getch();
if(b[i]=='\r')
{
b[i]='\0';
break;
}
printf("*");
}
if (strcmp(a,username)==0 && strcmp(b,password)==0)
{
printf("----欢迎登录----\n");
return 0;
}
else
{
printf("\n用户名或密码错误\n\n");
}
}
while(!0);
}
追问
请问可以回删的话要怎么写
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询