C语言题目(数组部分):输入一行字符,统计其中大写字母、小写字母、数字及其他字符的个数。怎么编写?

C语言题目(数组部分):输入一行字符,统计其中大写字母、小写字母、数字及其他字符的个数。怎么编写??求大神告知,不胜感激

#include<stdio.h>{

void counter(char*);

int n,i;

char array[100];

printf("enterastring:");

gets(array);

counter(array);

return0;

void counter(char*p){

int i,n,numUpperCase=0,numLowerCase=0,numSpace=0,numOther=0;

n=strlen(p);

for(i=0;i<n;i++){

if(*(p+i)>='A'&&*(p+i)<='Z')

numUpperCase++;

if(*(p+i)>='a'&&*(p+i)<='z')

numLowerCase++;

if(*(p+i)=='')

numSpace++;

else

numOther++;

printf("大写字母%d\n小写字母%d\n其他%d\n",numLowerCase,numLowerCase,numSpace,numOther);

扩展资料:

include用法:

#include命令预处理命令的一种,预处理命令可以将别的源代码内容插入到所指定的位置;可以标识出只有在特定条件下才会被编译的某一段程序代码;可以定义类似标识符功能的宏,在编译时,预处理器会用别的文本取代该宏。

插入头文件的内容

#include命令告诉预处理器将指定头文件的内容插入到预处理器命令的相应位置。有两种方式可以指定插入头文件:

1、#include<文件名>

2、#include"文件名"

温馨提示:内容为网友见解,仅供参考
第1个回答  推荐于2017-09-27
#include <stdio.h>
#include <string.h>
int main()
{
    int low=0;        //小写
    int upper=0;    //大写
    int alp=0;        //数字
    int other=0;    //其他
    char s[100];
    scanf("%s",&s);
    for(int i=0; i<strlen(s); i++)
    {
        if (s[i] >= 'a' && s[i] <= 'z')
        {
            low++;
        }
        else if (s[i] >= 'A' && s[i] <= 'Z')
        {
            upper++;
        }
        else if (s[i] >= '0' && s[i] <= '9')
        {
            alp++;
        }
        else
        {
            other++;
        }
    }
    printf("输入字符串为: %s\n",s);
    printf("小写字符%d个 大写字符%d个 数字字符%d个 其他字符%d个\n", low, upper, alp, other);
    return 0;
}
//兄弟,满意就给个采纳,谢谢!

本回答被提问者和网友采纳
第2个回答  2014-06-03
int n1=0,n2=0,n3=0;
int a[100]={0};
for(i=0;i<100;i++)
{
if (a[i]=='a-z')n1++;

if (a[i]=='A-Z')n2++;
if (a[i]=='0-9')n3++

}
第3个回答  2014-06-03
逐个读取字符,然后根据ASCII码判断属于哪一类。追问

完整的答案,谢谢

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

...分别统计其中的英文大写字母,小写字母,数字字符和其他字符
printf("小写字母个数:%d\\n",x);printf("大写字母个数:%d\\n",d);printf("数字个数:%d\\n",s);printf("其他字符个数:%d\\n",q);}

...的大写字母、小写字母、空格、数字以及其他字符的个数。
} printf("小写字母的个数为%d,大写字母的个数为%d,数字的个数为%d,空格的个数为%d,其他字符的个数为%d\\n",schara_num,bchara_num,shuzi_num,kongge_num,other_num);return(schara_num,bchara_num,shuzi_num,kongge_num,other_num);} ...

输入一行文字,分别统计其中英文大写字母,小写字母,空格,数字,其他字符...
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;}

c语言输入一串字符串,统计并输出其中的大写字母、小写字母、数字字符...
在C语言中,编写一个程序可以统计并输出给定字符串中的大写字母、小写字母、数字字符和其他字符的数量。程序使用指针遍历字符串,通过条件判断来区分各类字符。以下是该程序的示例代码:include<stdio.h>voidmain(){chara[100];intsum0=0,suma=0,sumA=0;gets(a);char*p;for(p=a;*p!='\\0';p++)...

c语言 输入一串字符串,统计并输出其中的大写字母、小写字母、数字字符...
c include void main() { char a[100];int sum0 = 0, suma = 0, sumA = 0; \/\/ 数字字符、小写字母和大写字母计数器 \/\/ 从用户获取输入 gets(a);\/\/ 使用指针遍历字符串 char* p;for (p = a; *p != '\\0'; p++) { \/\/ 检查字符类型 if (*p >= '0' && *p <= '9') ...

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;}

输入一行字符,分别统计处其中大写英文字母、小写英文字母、数字、空格和...
C语言的:include<stdio.h> main( ){ int a=0,b=0,d=0,e=0,f=0;char c;while((c=getchar( ))!='\\n'){ if (c>='A'&&c<='Z') a++;else if(c>='a'&&c<='z') b++;else if(c>='0'&&c<='9') d++;else if(c==' ') e++;else f++;} printf("%d\\n",a...

c程序:输入一行字符,统计其中英文字母,数字,空格,其他字符的个数(要...
int letters = 0;int nums = 0;int spaces = 0;int others = 0;char line[1024];char *p;printf("Please input one line string:");p = fgets(line,1023,stdin);if(p == NULL) return ;while(*p){ if((*p >= 'a' && *p <= 'z') || (*p >= 'A' && *p <= 'Z...

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==' ')...

相似回答