题解 | #计算某字符出现次数#
计算某字符出现次数
https://www.nowcoder.com/practice/a35ce98431874e3a820dbe4b2d0508b1
#include <stdio.h> #include <string.h> #include <ctype.h> int main() { char str[1002];//首先定义一个字符数组str用来存储我们的输入字符串,长度为1002(因为字符串的末尾还有‘\n’换行符‘\0’字符串结束符)。 char targetChar;//然后定义一个字符targetChar用来存储我们的目标字符。 fgets(str, sizeof(str), stdin);//调用fgets函数,让str读取标准输入 str[strcspn(str, "\n")] = '\0'; // 去除 fgets 读取时可能带来的换行符 scanf("%c", &targetChar); //调用scanf函数,让targetChar存储我们的目标字符 targetChar = tolower(targetChar);// 将目标字符转换为小写 int len = strlen(str);//为了方便我们遍历字符串,我们计算一下字符串的长度,储存为len int count = 0;//再定义一个count用来计算我们的结果(出现次数) for (int i = 0; i < len; i++) {//遍历字符串 // 将字符串中的字符转换为小写并与目标字符比较 if (tolower(str[i]) == targetChar) {//当发现相同的时候 count++;//我们的出现次数加1 } } printf("%d\n", count);//输出我们的结果 return 0; }