#include <math.h> #include <stdio.h> #include <string.h> int main() { /*变量定义开始*/ char password[100] = {"/0"}; char* pp = password; while (scanf("%s", password)!=EOF) { int len = strlen(password); int i = 0; /*小写字母,大写字母,数字,其他符号*/ int vtype[4] = {0, 0, 0, 0}; /*变量定义结束*/ /*密码长度判断开始*/ ...