// HJ87-2 密码强度等级.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。 #include<iostream> #include<bits/stdc++.h> using namespace std; int main() { string s; while (getline(cin, s)) { int len = s.size(), up = 0, low = 0, num = 0, ch = 0,score=0; int ss = 0, sa = 0, sn = 0, sc = 0, so = 0; if (l...