c语言中统计字符串中各个字符的个数?

日期:2019-12-16 17:18:23 人气:1

c语言中统计字符串中各个字符的个数?

//计算字符串中相同字符的个数 #include "stdio.h" #include "string.h" int count_str_same(char * p,char ch); int main() { int same_ch; char a[100]; char c; printf("请输入字符串:"); gets(a); printf("请输入欲统计的重复字符:"); c
    A+
热门评论