C语言编程100题-3.4

3.4
编写一个程序,当输入一个字符串后,要求不仅能够统计其中字符的个数,还能分别指出其中大、小写字母、数字以及其他字符的个数。
输入:I am 21 years old.
输出(五个数值依次为大、小写字母、数字、其他字符和总共含有的字符个数):
1 10 2 5 18

法一

#include<stdio.h>
#include<string.h>     //字符串处理库函数
int main()
{
       char a[100];
       int big, small, number, other, all, i;
       gets_s(a,100);     //用gets也行,100表示缓冲区大小
       i = strlen(a);     //求字符串a的长度
       all = 0; big = 0; small = 0; other = 0; number = 0;
       int j;
       for (j = 0; j <= i; j++)
       {
              if (a[j] >= 'a'&&a[j] <= 'z')
              {
                      small = small + 1;
              }
              else if (a[j] >= 'A'&&a[j] <= 'Z')
              {
                      big = big + 1;
              }
              else if (a[j] >= '0'&&a[j] <= '9')
              {
                      number = number + 1;
              }
              else other = other + 1;
              all = all + 1;     //剩下的全都是特殊字符,最复杂的最后考虑,先易后难原则
       }
       printf("%d %d %d %d %d", big, small, number, other - 1, all - 1);     //other和all要减1,是因为字符串含结束符'\0',要去掉(当输入字符串Ab,这时候other是1而不是0,因为\0默认算在了特殊字符内)
       system("pause");
       return 0;
}

法二

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
    char a[1000];
    int q = 0, cap = 0, small = 0, dig = 0, oth = 0, total = 0;
    gets(a);
    while (a[q] != '\0')
    {
        if (a[q] >= 'A' && a[q] <= 'Z')
            cap += 1;
        else if (a[q] >= 'a' && a[q] <= 'z')
            small += 1;
        else if (a[q] >= '0' && a[q] <= '9')
            dig += 1;
        else
            oth += 1;
        q++;
    }
    total = cap + small + dig + oth;
    printf("%d %d %d %d %d", cap, small, dig, oth, total);
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值