c语言作业:输入一串字符串,以'!'结束,不分大小写,统计其中每种英文字...
for(k=0;k<26;k++)if(count[k]!=0)printf("%c:%d\\n",k+'a',count[k]);}
C语言统计字符串中每个字母出现的次数
='\\n') \/*获取字符并统计每个字母出现次数*\/ for (i=65;i=90;i++) if(c==i||c==i+32) a[i]++ ; for (j=65;j=90;j++) \/*输出统计信息*\/ if (a[j]0) printf("%c:%-3d\\n
用C语言编程:输入一行字符,分别统计出其中英文字母、空格、数字和其他字...
printf("\\n其中的其他字符个数为 %d\\n",count4);}
...输入一串英文字母,统计每个字母(不区分大小写)出现的次数_百度知 ...
cout<<"字符串的数量为:"<<n<<endl;return 0;}
c语言 输入一行字符,分别统计出其中英文字母
else if(c[i]>='0'&&c[i]<='9') nu++; else if(c[i]==' ') sp++; else other++; } printf("英文字母个数=%d\\n数 字 个 数 =%d\\n空 格 字 数 =%d\\n其他字符个数=%d\\n",el,nu,sp,other); return 0;}已经测试过了,测试结果如下,有问题可以...
输入一行字符,分别统计出其中英文字母,空格,数字和其他字符的个数...
num = 0, other = 0;int i = 0;gets(str);while (str[i] != '\\0'){if ((str[i]>= 'a' && str[i] <= 'z') || (str[i]>= 'A' && str[i] <= 'Z')){word++;}else if ((str[i]>= '0' && str[i] <= '9')){num++;}else if (str[i] == ' ')...
用c语言编程,字符统计:输入一个文本文件,分别统计出其中英文字母、空格...
char c;int letters=0,space=0,digit=0,other=0;printf("请输入一行字符:");while ((c=getchar())!='\\n'){ if (c >= 'a'&&c <= 'z' || c >= 'A'&&c <= 'Z'){ letters++;} else if (c == ' '){ space++;} else if (c >= '0'&&c <= '9'){ digit++;}...
求c语言 指点!!!从键盘输入一串英文字母,统计每个字母的个数,并输出...
include <stdio.h> int main(){ int count[26]={0},i;char c;while((c=getchar())!='\\n')if(c>='a'&&c<='z')count[c-'a']++;for(i=0;i<26;i++)printf("%c : %d\\n",i+'a',count[i]);return 0;}
c语言 从键盘输入一行字符,分别统计其中数字字符,字母字符和其他字符...
{ inta,b,c,ch;a=b=c=0;\/\/计数器初始化为0.while((ch=getchar())!='\\n')\/\/循环读取字符,到换行结束。{ if(ch>='0' && ch<='9')\/\/数字 a++;else if((ch>='a' && ch<='z')||(ch>='A' && ch<='Z'))\/\/字母 b++;else\/\/其它 c++;} printf("%d%d%d\\n",a,...
C语言 输入一行字符,分别统计求出其中英文字母、空格、数字和其他字符的...
{ char s;int i=0,j=0,k=0,m=0,da=0,xiao=0;printf("please input the string\\n");while((s=getchar())!='\\n') \/*循环从键盘读入字符直到一行结束(输入回车)*\/ { if((s='a')||(s'A')){ if(s='A')da++;if(s='a')xiao++;i++; \/*i存入字母数*\/ } else if(...