题解 2974: 统计字符数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

C语言 AC通过

摘要:include <stdio.h> #include <string.h> int main() {     char input[1001];     scanf("%s", input);……

题解,结构体数组解法

摘要:```c #include #include #include #define MAX 1001 // 定义最大字符数组长度 // 定义一个结构体,用于存储字符及其出现次数 ……