藤浩


私信TA

用户名:uq_65644879572

访问量:1789

签 名:

无限风光在险峰

等  级
排  名 2668
经  验 2200
参赛次数 0
文章发表 22
年  龄 21
在职情况 学生
学  校 麦当劳汉堡大学
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:


#include<stdio.h>

#include<string.h>

int main()

{

    char str[100];

    int i,letter=0,number=0,space=0,other=0;

    gets(str);

    for(i=0;i<strlen(str);i++)

    {

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

            letter++;

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

            number++;

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

            space++;

        else

            other++;

    }

    printf("%d %d %d %d",letter,number,space,other);

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »