关于C程序if括号里为什么只是一个变量
#include<stdio.h>#include<string.h>#include<ctype.h>main(){inti;inthasUpper,hasLower,...
#include <stdio.h>
#include <string.h>
#include <ctype.h>
main()
{
int i;
int hasUpper, hasLower, hasDigit;
char user[25], password[25];
hasUpper = hasLower = hasDigit = 0;
printf("用户名");
scanf(" %s", user);
printf("密码");
scanf(" %s",password);
for (i = 0; i < strlen(password); i++)
{
if (isdigit(password[i]))
{
hasDigit = 1;
continue;
}
if (isupper(password[i]))
{
hasUpper = 1;
continue;
}
if (islower(password[i]))
{
hasLower = 1;
}
}
if ((hasDigit ) && (hasLower ) && (hasUpper ))
{
printf("你输入的密码正确\n");
printf(" %d,%d,%d.", hasUpper, hasLower, hasDigit);
}
else
{
printf("你输入的密码错误\n");
printf(" %d,%d,%d.", hasUpper, hasLower, hasDigit);
}
return 0;
}
我是一个新手,想知道,为什么if后面是三个变量,不是三个判断式,还有上面三个初始化变量为0 是什么意思? 展开
#include <string.h>
#include <ctype.h>
main()
{
int i;
int hasUpper, hasLower, hasDigit;
char user[25], password[25];
hasUpper = hasLower = hasDigit = 0;
printf("用户名");
scanf(" %s", user);
printf("密码");
scanf(" %s",password);
for (i = 0; i < strlen(password); i++)
{
if (isdigit(password[i]))
{
hasDigit = 1;
continue;
}
if (isupper(password[i]))
{
hasUpper = 1;
continue;
}
if (islower(password[i]))
{
hasLower = 1;
}
}
if ((hasDigit ) && (hasLower ) && (hasUpper ))
{
printf("你输入的密码正确\n");
printf(" %d,%d,%d.", hasUpper, hasLower, hasDigit);
}
else
{
printf("你输入的密码错误\n");
printf(" %d,%d,%d.", hasUpper, hasLower, hasDigit);
}
return 0;
}
我是一个新手,想知道,为什么if后面是三个变量,不是三个判断式,还有上面三个初始化变量为0 是什么意思? 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询