1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-11-27 08:26:20 +00:00
202401-programming-assignments/【实践课内】9.数组3/7-3 统计字符出现次数.c

22 lines
267 B
C
Raw Normal View History

2024-11-15 08:03:08 +00:00
#include <stdio.h>
char c, s[100];
int main() {
gets(s);
scanf("%c", &c);
int len = strlen(s);
int cnt = 0;
for (int i = 0; i < len; i++) {
if (s[i] == c) {
cnt++;
}
}
printf("%d\n", cnt);
return 0;
}