#include <stdio.h> #include <string.h> int main() { //确定参数并输入password[]字符串 int len=0,capital=0,lowercase=0,number=0,others=0;//密码长度、大写、小写、数字、其他字符 char password[301]; int score=0,s1,s2,s3,s4,bouns; scanf("%s",password); len=strlen(password); //遍历password[]字符串 for(int i=0;i<le...