编程实现:在main函数中定义一个字符型数组str(长度为100),从键盘上

日期:2017-05-20 20:37:55 人气:1

编程实现:在main函数中定义一个字符型数组str(长度为100),从键盘上

#include #include void fun(int n,char str[100]){int i,a[26]={0};for(i=0;i='a'&&str[i]<='z')a[(int)str[i]-97]++;for(i=0;i<26;i++)if(a[i]) printf("%c: %d次\n",i+97,a[i]);}void main(){int n;char str[100];gets(str);n=strlen(
    A+
热门评论