其他分享
首页 > 其他分享> > HJ10 字符个数统计

HJ10 字符个数统计

作者:互联网

描述
编写一个函数,计算字符串中含有的不同字符的个数。字符在ASCII码范围内(0~127,包括0和127),换行表示结束符,不算在字符里。不在范围内的不作统计。多个相同的字符只计算一次
例如,对于字符串abaca而言,有a、b、c三种不同的字符,因此输出3。
输入描述:
输入一行没有空格的字符串。

输出描述:
输出 输入字符串 中范围在(0~127,包括0和127)字符的种数。

示例1
输入:
abc

输出:
3

#include <stdio.h>

int main(int arg, char** argv)
{
    char str;
    int cnt[127] = {0};
    char *p = NULL;
    int val;
    
    while(scanf("%c", &str) != EOF)
    {
        if(str == '\n')
        {
            break;
        }
        if(cnt[str]==0 && str!='\n')
        {
            cnt[str] = 1;
        }
    }
    for(int i=0; i<127; i++)
    {
            val += cnt[i];
    }
    printf("%d\n", val);
    memset(cnt, 0, sizeof(cnt));
}

标签:HJ10,cnt,字符,int,个数,char,str,127
来源: https://blog.csdn.net/engineer0/article/details/120317228