科比你来


私信TA

用户名:1352847107

访问量:15328

签 名:

1352847107

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

  自我简介:

解题思路:解题思路就是Getchar()是计算输入字符个数的关键

注意事项:注意数字和字母的上线限不要设置成单独的<或>, 而是>=和<=

参考代码:

/*输入一行字符,分别统计出其中英文字母、数字、空格和其他字符的个数。*/

#include<stdio.h>

int main()

{

    int english = 0, number = 0, space = 0, others = 0, c;


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

    {

        if(c >='a'&&c<='z')

            english++;

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

             number++;

        else if(c == ' ')   // 不允许有空的单字符

             space++;

        else

           others++;

    }

    printf("%d %d %d %d\n", english, number, space, others);

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »