0
点赞
收藏
分享

微信扫一扫

统计各种字符

岛上码农 2022-02-06 阅读 83
c语言

#include<stdio.h>
int main()
{
    char c;
    int letters = 0,space = 0,digit = 0,others = 0;
    printf("输入字符\n");
    while ((c = getchar()) != '\n')
    {
        if (c >= 'a'&&c <= 'z' || c >= 'A'&&c <= 'Z')
        {
            letters++;
        }
        
        else if (c >= '0'&&c <= '9')
        {
            digit++;
        }
        else if (c == ' ')
        {
            space++;
        }
        else
        {
            others++;
        }
    }
    printf("字母=%d 数字=%d 空格=%d 其他=%d\n", letters, space, digit, others);
    return 0;
}

举报

相关推荐

0 条评论