输入一行字符,分别统计出其中英文字母,空格,数字和其他字符的个数.(C语言)

我是这样写的:
#include<stdio.h>
void main()
{
char a[50];
int letter=0,number=0,blank=0,other=0,i;
gets(a);
for(i=0;i<50;i++)
{
if((a[i]>='A'&&a[i]<='Z')||(a[i]>='a'&&a[i]<='z'))
letter++;
else if(a[i]>='0'&&a[i]<='9')
number++;
else if(a[i]==' ')
blank++;
else other++;
}
printf("letter=%d,number=%d,blank=%d,other=%d",letter,number,blank,other);
}
我默认输入的字符串是小于50个字符的,问题出在其他字符(other)这里,比如我输入了15个英文字母,他就默认a这个数组里面剩下的35个为其他字符了,有什么方法可以解决么?其他的都是正确的,就这里出了问题。。。

输入一行字符分别统计,出其中英文字母空格数字和其他字符的个数的源代码如下:

#include<stdio.h>

int main()

{

char c;

int letters=0,spaces=0,digits=0,others=0;

printf("请输入一些字母:\n");

while((c=getchar())!='\n')

{

if((c>='a'&&c<='z')||(c>='A'&&c<='Z'))

letters++;

else if(c>='0'&&c<='9')

digits++;

else if(c==' ')

spaces++;

else

others++;

}

printf("字母=%d,数字=%d,空格=%d,其他=%d\n",letters,digits,spaces,others);

return 0;

}

扩展资料

C语言程序统计一个文件的字符数的源代码如下

#include <stdio.h>

#include <stdlib.h>

int main(void)

{

int counter = 0; //计数器

int ch; //存储从文件中读入的字符

while( EOF != (ch = getchar()) ) //使用getchar函数从标准输入中读取字符,当读取到末尾时停止循环 

{

counter++; //计数器自增 

printf("%d", counter);

return 0;

}

温馨提示:内容为网友见解,仅供参考
第1个回答  推荐于2017-10-04
#include<stdio.h>
void main()
{
//char a[50];
int letter=0,number=0,blank=0,other=0;
//int i;
//gets(a);
char c; 用来读取每个字符
while ((c=getchar())!='\n') //基本就是修改的这句,当读入的是回车即为结束运算
//for(i=0;i<50,a[i]='\n';i++)
{
if((c>='A'&&c<='Z')||(c>='a'&&c<='z'))
letter++;
else if(c>='0'&&c<='9')
number++;
else if(c==' ')
blank++;
else other++;
}
printf("letter=%d,number=%d,blank=%d,other=%d",letter,number,blank,other);
}
程序已经验证过,可以执行哦~~~本回答被提问者采纳
第2个回答  2010-05-18
#include<stdio.h>
void main()
{
char a[50];
int letter=0,number=0,blank=0,other=0,i=0;
gets(a);
while(a[i]!='/0')
{
if((a[i]>='A'&&a[i]<='Z')||(a[i]>='a'&&a[i]<='z'))
letter++;
else if(a[i]>='0'&&a[i]<='9')
number++;
else if(a[i]==' ')
blank++;
else other++;
i++;
}
printf("letter=%d,number=%d,blank=%d,other=%d",letter,number,blank,other);
}
在输入字符串时,记着在输入结束位置输入'/0'即可。
第3个回答  2010-05-18
#include<stdio.h>
void main()
{
char a[50];
int letter=0,number=0,blank=0,other=0,i;
gets(a);
for(i=0;i<50;i++)
{
if((a[i]>='A'&&a[i]<='Z')||(a[i]>='a'&&a[i]<='z'))
letter++;
else if(a[i]>='0'&&a[i]<='9')
number++;
else if(a[i]==' ')
blank++;
else other++;
}
printf("letter=%d,number=%d,blank=%d,other=%d",letter,number,blank,other);
}
我默认输入的字符串是小于50个字符的,问题出在其他字符(other)这里,比如我输入了15个英文字母,他就默认a这个数组里面剩下的35个为其他字符了,有什么方法可以解决么?其他的都是正确的,就这里出了问题。。。
第4个回答  2010-05-18
#include<stdio.h>
void main()
{
char a[50];
int letter=0,number=0,blank=0,other=0,i;
gets(a);
for(i=0;a[i]!='\0';i++)
{
if((a[i]>='A'&&a[i]<='Z')||(a[i]>='a'&&a[i]<='z'))
letter++;
else if(a[i]>='0'&&a[i]<='9')
number++;
else if(a[i]==' ')
blank++;
else other++;
}
printf("letter=%d,number=%d,blank=%d,other=%d",letter,number,blank,other);
}

输入一行字符,分别统计出其中英文字母,空格,数字和其他字符的个数...
printf("字母=%d,数字=%d,空格=%d,其他=%d\\n",letters,digits,spaces,others);return 0;}

输入一行字符,分别统计出其中英文字母,空格,数字和其他字符的个数...
参考代码:include<stdio.h>int main(){char str[100];int word = 0, blank = 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 ((...

输入一行字符,分别统计出其中英文字母,空格,数字和其他字符的个数
程序首先定义了四个整型变量,分别表示四种类型的字符计数:letters(英文字母)、spaces(空格)、digits(数字)和others(其他字符)。然后通过一个while循环,用户输入一串字符,程序会逐个检查每个字符,根据其ASCII值进行分类计数。当输入的是大写或小写字母(ASCII值为65到90或97到122),就增加letters计...

C语言题目输入一行字符,分别统计出其中英文字母,空格,数字和其他字符的...
include <stdio.h> int main(){ int letter=0,space=0,number=0,others=0;char nextchar;printf("Input your string\\n");for(;nextchar!='\\n';){ scanf("%c",&nextchar);if('a'<=nextchar&&nextchar<='z'||'A'<=nextchar&&nextchar<='Z')letter++;else if(nextchar==' ')space++...

1. 输入一行字符,分别统计出其中英文字母、空格、数字和其他字符的个...
s[i]<='Z' && s[i]>='A')ch++;else n++;i++;} printf("刚才输入的字符中英文字符个数为 %d\\n", ch);printf("刚才输入的字符中空格个数为 %d\\n", space);printf("刚才输入的字符中数字个数为 %d\\n", num);printf("刚才输入的字符中其他个数为 %d\\n", n);return 0;} ...

C语言编程:输入一行字符,统计其中英文字母的个数?
include<stdio.h> int main(){char s[200];int i,n=0;gets(s);for(i=0;s[i];i++)if(s[i]>='A'&&s[i]<='Z'||s[i]>='a'&&s[i]<='z')n++;printf("%d\\n",n);getch();return 0;}

...输入一个文本文件,分别统计出其中英文字母、空格、数字和其它字符的...
int main(){ 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'...

用C语言编程:输入一行字符,分别统计出其中英文字母、空格、数字和其他字...
include <stdio.h> void main(){ char line[30];int i,count1=0,count2=0,count3=0,count4=0;printf("\\n请输入一行字符: ");gets(line);i=0;while(line[i]!='\\0'){ if(((line[i]>=97) && (line[i]<=122))||((line[i]>=65) && (line[i]<=90))){ count1++;} ...

...统计其中英文字母、空格、数字和其他字符的个数。
void main(){ int w=0,k=0,n=0,z=0; \/\/w为字母个数,k为空格个数,n为数字个数,z为其他字符个数 char ch;scanf("%c",&ch);while(ch!='@'){ if ( ch>='A'&&ch<='z' )w++;else if ( ch==' ' ) \/\/这里你少写个‘=’号,以后要细心啊 k++;else if ( ch>=...

C语言 输入一行字符,分别统计求出其中英文字母、空格、数字和其他字符的...
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(s==' ')...

相似回答