#include <stdio.h> #include <string.h> int main() { char letter[26] = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w','x', 'y', 'z'}; //初始化全小写字母数组,后面借此统计各字母出现次数 int letterNum[26] = {0}; int n; char s...