#include <stdio.h>
#include <string.h>
int main() {
int i, count, j;
char str[1001];
char a, b;
fgets(str, sizeof(str), stdin);
j = strlen(str);
scanf("\n%c", &b);
if (b <= 90 && b >= 65) {
count = 0;
for (i = 0; i < j ; i++) {
if (str[i] == b || str[i] == (b + 32)) {
count++;
} else continue;
}
printf("%d", count);
} else if (b <= 122 && b >= 97) {
count = 0;
for (i = 0; i < j; i++) {
if (str[i] == b || str[i] == (b - 32)) {
count++;
} else continue;
}
printf("%d", count);
} else {
count = 0;
for (i = 0; i < j; i++) {
if (str[i] == b) {
count++;
} else continue;
}
printf("%d", count);
}
}
本题需要计算某字符出现字数,首先需要正确得到输入的字符串,注意输入中
包含多个空格,然后分成大小写字母以及数字三种情况进行处理计算,最后输
出结果。