一道C语言的简单问题求高手解答,求字符串中不同字母个数

题目是“输入一个由大写字母组成的字符串,求字符串中包含了几个不同的字母”
我编的程序是:
# include <stdio.h>
void main()
{
char c[100];
int i,j,n=0;
gets(c);
for(i=0;i<99;i++)
for(j=0;j<99;j++)
if(c[j]==c[i]&&j!=i&&c[j]!='\0')
c[j]='\0';
for(i=0;i<99;i++)
if(c[i]!='\0') n++;
printf("共有%d个不同的字母。\n",n);
}
运算出来不同字母数总是会比实际数多一个。求问是哪里出了问题?

第1个回答  推荐于2018-03-09

就一个问题,新分配的内存没有初始化,所以说结果是很不确定的,“运算出来不同字母数总是会比实际数多一个”,我这里多出了很多哦~

修改之后运行正常:

当然了,也可以搞点专业的做法:

我装逼结束了。嗯,就是这样。

本回答被提问者和网友采纳

C语言中如何统计一个字符串中大写字母的个数
int main(){ char ch[100];int i,n,num=0;;gets(ch);\/\/输入字符串 n=strlen(ch);\/\/字符串的长度 for(i=0;i ='a'&&ch[i]<='z')num++;} printf("字符串中大写字母的个数为:%d\\n",num);return 0;} 直接就是主函数了,看懂这个,就会写要调用的函数了。。

c语言求输入字符串的字母,数字,空格,其他字符的个数我弄出了下面的但 ...
请输入字符串:wwwrqr32 232tghthr fgegtqerg{}][)(><,.?\/ 该字符串中含有:小写字母:21个。数字:5个。空格:4个。其他字符:12个。Press any key to continue \/ include <stdio.h> include <string.h> int main () { char capitals = 0,lowercases = 0,digits = 0;char spaces = ...

C语言题目(数组部分):输入一行字符,统计其中大写字母、小写字母、数字及...
printf("大写字母%d\n小写字母%d\n其他%d\n",numLowerCase,numLowerCase,numSpace,numOther);}

C语言,输入一段字符串,统计输出其中各个字母的个数
char a[1000];int i=0;b[52]={0};gets(a);while(a[i]){ if(a[i]>='a'&&a[i]<='z')b[a[i]-'a']++;if(a[i]>='A'&&a[i]<='Z')b[a[i]-'A'+26]++;i++;}

C语言编程题 输入一个由大写字母组成的字符串,求字符串中包含了几...
char str[99]="";int i,n=0,times[26]={0};gets(str);for(i=0;str[i];i++){ times[str[i]-'A']++;}for(i=0;i<26;i++) if(times[i])n++; printf("%d个不同字母\\n",n);

c语言求输入字符串的字母,数字,空格,其他字符的个数我弄出了下面的但 ...
fgegtqerg{}][)(><,.?\/ 该字符串中含有:小写字母:21个。数字:5个。空格:4个。其他字符:12个。Press any key to continue \/ include include int main (){ char capitals = 0,lowercases = 0,digits = 0;char spaces = 0,other = 0,length,i,c,s[200];printf("请输入字符串:");...

. 输入一个字符串,求该字符串中不同的字符数。例如输入 Hello,world...
按照你的要求编写的求字符串中不同的字符数的C语言程序如下#includetdio.h intifferent(char*){ nt,j,count=1,flag=1;harharacter[100]={'\\0'};haracter[0]=s[0];or(i=1;s[i]!='\\0';i++)flag=1;for(j=0;character[j]!='\\0';j++){ f(character[j]==s[i])flag=0;br...

C语言 输入一串字符串,计算字母,数字,特殊符号的个数?
void main(){ int nE=0,nS=0,nN=0,nO=0,i=0;char a[1000];scanf("%s",a);while (a[i]!='\\0') { if (a[i]<='z' && a[i]>='a' || a[i]<='Z' && a[i]>='A')nE++;else {if (a[i]<='9' && a[i]>='0')nN++;else {if (a[i]==' ')nS++;else...

用C语言编写一个程序,统计一个字符串中 各种 小写字母(26个小写字母...
输入一个串,输出各个小写字母的个数 include <stdio.h> define maxn 128 char buffer[maxn]; \/\/输入缓冲区 void calcul(char* line) { int count[26] = {0}; \/\/字符统计数组 int i;char *p;for(p=line; *p; ++p) { if(*p >= 'a' && *p <= 'z') { count[*p-'a']...

C语言 输入一行字符串,统计字母,数字和其它符号的个数
h> int main(){char s[200];int i,zm=0,sz=0,qt=0;for(i=0;s[i];i++)if(s[i]>='A'&&s[i]<='Z'||s[i]>='a'&&s[i]<='z')zm++;else if(s[i]>='0'&&s[i]<='9')sz++;else qt++;printf("zm=%d, sz=%d, qt=%d\\n",zm,sz,qt);return 0;} ...

相似回答