输入一行字符,分别统计出其中英文字母(包括大小写)、空格、数字和其他字符的个数。

请用C语言!把程序写出来!谢谢!

第1个回答  2007-04-17

忘了,好久没用过C了,
第2个回答  2007-04-17
用ASCII码判断

输入一行字符,分别统计出其中英文字母(包括大小写)、空格、数字和其他字...
} printf("字母有%d个,数字有%d个,空格有%d个,其他有%d个",letters,digits,spaces,others);return 0;}

...字母(包括大小写)、空格、数字和其他字符的个数。
...同意楼上的

输入一行字符,分别统计其中英文字母、空格、数字和其它字符个数。
题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。1.程序分析:利用while语句,条件为输入的字符不为'\\n'.2.程序源代码:include "stdio.h"main(){char c;int letters=0,space=0,digit=0,others=0;printf("please input some characters\\n");while((c=getchar())!='...

输入一行字符,分别统计出其中的英文字母、空格、数字和其他字符的个数...
int main(void){ \/\/输入一行字符,分别统计出其中英文字母、空格、数字和其他字符的个数。char ch;int char_num=0,kongge_num=0,int_num=0,other_num=0;while((ch=getchar())!='\\n')\/\/回车键结束输入,并且回车符不计入 { if(ch>='a'&&ch<='z'||ch<='z'&&ch>='a'){ char_...

...小写字母,空格,数字,其他字符个数。【用指针,数组实现】
else if(s[i]==' ')a[2]++;else if(isdigit(s[i]))a[3]++;else a[4]++;printf("英文大写字母有%d个\\n",a[0]);printf("英文小写字母有%d个\\n",a[1]);printf("空格有%d个\\n",a[2]);printf("数字有%d个\\n",a[3]);printf("其它字符有%d个\\n",a[4]);return 0;} ...

输入一行字符,分别统计处其中英文字母、空格、数字和其它字符的个数
int letterCount = 0;\/\/英文字母的个数 int spaceCount = 0;\/\/空格的个数 int digitalCount = 0;\/\/数字的个数 int otherCount = 0;\/\/其他字符的个数 int a;while( (a=getchar()) != '\\n'){ if( (a>='A' && a<='Z') || (a>='a' && a<='z'))\/\/如果是想分别统计...

C语言:输入一行字符,分别统计出其中的大写英文字母、小写英文字母、数字...
语法错误:printf("其中大写字母%d个,小写字母%d个,数字%d个,其他字符%d个\\n",dx,xx,shuzi,qita);dx后面的逗号不是英文的。算法也有错误:你判断的时候if(all[i]>'a'&&all[i]<'z'||all[i]>'A'&&all[i]<'Z')应该把>都改成>=,<也一样,不改的话a、A、z、Z的判断将被划在...

输入一行字符,分别统计出其中英文字母,空格,数字和其它字符的个数.
A'&&num<='Z'){ char_num++;} else if(num==' ') \/* 这里 *\/ { kongge_num++;} else if(num>='0'&&num<='9'){ int_num++;} else { other_num++;} } printf("字母=%d,空格=%d,数字=%d,其他字符=%d\\n",char_num,kongge_num,int_num,other_num);return 0;} ...

编程题:输入一行文字,分别统计出其中英文大写字母、小写字母、空格、数...
\/\/英文大写字母、小写字母、空格、数字和其它字符 for(i=0;i<strlen(p);i++){ if(p[i]>='A'&&p[i]<='Z')daxie++;else if(p[i]>='a'&&p[i]<='z')xiaoxie++;else if(p[i]==' ')kongge++;else if(p[i]>='0'&&p[i]<='9')shuzi++;else other++;} printf("大写...

输入一行字符,分别统计其中的英文大写字母,小写字母,数字字符和其他字符...
char a[10];printf("请出入10个字符:");scanf("%s",a);for(i=0;i<10;i++){ if(a[i]>='a' && a[i]<='z')x++;if(a[i]>='A' && a[i]<='Z')d++;if(a[i]>='0' && a[i]<='9')s++;} q=10-x-d-s;\/\/或者你在if后面直接加上一个else q++,但是前面的...

相似回答