#include <iostream> using namespace std; // 结构体越用越爽,简单无脑,且不用函数 typedef struct { string s; // 记录大小写顺序 int count; // 记录个数 }S; int main() { string s; while (getline(cin, s)) { S t[26]; // 下标对应字母 for (int i = 0; i < 26; i++) t[i].count = 0; for (int i =...