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);
}
展开
 我来答
GTA小鸡
高粉答主

2018-06-15 · 醉心答题,欢迎关注
知道大有可为答主
回答量:2.6万
采纳率:78%
帮助的人:1.3亿
展开全部
#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);
}
追问
请问可以回删的话要怎么写
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式