gpt4 book ai didi

C - 存储数组

转载 作者:行者123 更新时间:2023-11-30 18:54:12 25 4
gpt4 key购买 nike

因此,我用 C 语言编写了一个程序,它存储密码并告诉您所选密码的安全状态。

当我用 %s 代替 "%c" 时一切顺利对于数组中的

scanf(" %S or %C", &password);

函数。

为什么它适用于 %s 而不适用于 %c?

scanf(" %s\n", &password);

while(i<20)
{
if(isupper(password[i]))
{
c = 1;
}

if(isdigit(password[i]))
{
a = 1;
}

if(password[i]=='$')
{
b = 1;
}

i++;
}


if( a==1 && b==1 && c==1)
{
printf("Your password is great");
}
else
{
printf("Your password sucks");
}

最佳答案

%s 用于字符串(多个字符)示例:“Hello”%c 代表单个字符示例:“H”

关于C - 存储数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30715338/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com