代码如下:
#include <stdio.h>#include <stdlib.h>
#include <string.h>
int main()
{
int len = 0
char password[10] = {0}
printf("请输银轮入密码:")
scanf("%s", password)
len = strlen(password)
if (len < 5) {
printf("密码长度不足!\n")
}
else if (len > 5) {
printf("密码长度过长!\n")
}
else {
// 默认密码是 admin
if (strcmp(password, "admin") == 0) {
printf("登录成功!\n")
}
else {
printf("密扮顷码不正确!\n")
}
}
system("pause")
return 锋缺信0
}
char buf[5]={'T','简厅o','d'拦庆隐,'a','y'}for(int i=0i<差轿5i++)
{
buf[i]=buf[i]+4
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)