【前言】
大家好,我是Catzzz666,一个一心让大家变强的博主。
同时也非常感谢各位铁子的支持和鼓励,接下来的时间我们一起努力!
知识点补充
字符串操作函数:strlen、gets函数
头文件:#include
strlen :求字符串的长度(\0之前)
gets :获取字符串(与getchar获取单个字符方式相似,但是这里设计了一个缓冲区问题)
关于缓冲区的问题,铁子们可以看下这篇博客:
gets()getchar()与缓冲区的问题_as14569852的博客-CSDN博客_gets缓冲区
题目描述
原题链接:字符个数统计_牛客题霸_牛客网
编写一个函数,计算字符串中含有的不同字符的个数。字符在 ASCII 码范围内( 0~127 ,包括 0 和 127 ),换行表示结束符,不算在字符里。不在范围内的不作统计。多个相同的字符只计算一次
例如,对于字符串 abaca 而言,有 a、b、c 三种不同的字符,因此输出 3 。
完整代码
#include
#include
int main()
{
char arr[500] = {0};
char str[500] = {0};
gets(arr);
int len = strlen(arr);
int count = 0;
int i;
for (i = 0;i < len;i++)
{
if (i == 0)
{
str[0] = arr[i];
count++;
continue;
}
int j;
for (j = 0;j < count;j++)
{
if (str[j] != arr[i])
{
continue;
}
if (str[j] == arr[i])
{
break;
}
}
if (j == count)
{
str[j] = arr[i];
count++;
}
}
printf("%d\n", count);
return 0;
}
【结语】
今天是正月十五,在这里博主祝各位铁子们元宵快乐!