原文: https://www.programiz.com/c-programming/examples/frequency-character
要理解此示例,您应该了解以下 C 编程主题:
#include <stdio.h>
int main() {
char str[1000], ch;
int count = 0;
printf("Enter a string: ");
fgets(str, sizeof(str), stdin);
printf("Enter a character to find its frequency: ");
scanf("%c", &ch);
for (int i = 0; str[i] != '\0'; ++i) {
if (ch == str[i])
++count;
}
printf("Frequency of %c = %d", ch, count);
return 0;
}
输出
Enter a string: This website is awesome.
Enter a character to find its frequency: e
Frequency of e = 4
在该程序中,用户输入的字符串存储在str
中。
然后,要求用户输入要找到其频率的字符。 它存储在变量ch
中。
然后,使用for
循环迭代字符串的字符。 在每次迭代中,如果字符串中的字符等于ch
,则count
增加 1。
最后,打印存储在count
变量中的频率。