统计各种字符

阅读 85

2022-02-06

#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)

0 0 举报