X


私信TA

用户名:uq_78480997917

访问量:733

签 名:

等  级
排  名 15560
经  验 783
参赛次数 0
文章发表 14
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

#include<stdio.h>

#include<string.h>

 

void statistics(char *str, int *num_char, int *num_num, int *space_num, int *other_num)

{

    int len=0, i=0;

    len = strlen(str);

    *num_char = 0;

    *num_num = 0;

    *space_num = 0;

    *other_num = 0;

    for(i = 0; i < len; i++)

    {

        if(str[i]>='0' && str[i]<='9')

            *num_num+=1;

        else if( (str[i]>='a' && str[i]<= 'z') || (str[i]>='A' && str[i]<='Z'))

            *num_char+=1;

        else if(str[i]==' ')

            *space_num+=1;

        else

            *other_num+=1;

    }

}

 

int main()

{

    char Mystring[1024];

    int num_char, num_num, space_num, other_num;

    scanf("%[^\n]", Mystring);

    statistics(Mystring, &num_char, &num_num, &space_num, &other_num);

    printf("%d %d %d %d\n", num_char, num_num, space_num, other_num);

    return 0;

}


 

0.0分

0 人评分

  评论区