gpt4 book ai didi

c - 如何计算给定单词中某个字母出现的次数?

转载 作者:行者123 更新时间:2023-11-30 19:34:34 25 4
gpt4 key购买 nike

嗨,您如何计算给定单词中出现的次数,如下所示,因为使用我现在拥有的程序,它似乎没有正确排列。

#include <stdio.h>

int main(void)
{
char a;
char lang[] = "pneumonoultramicroscopicsilicovolcanoconiosis";
char i = 0;
char count = 0;


printf("pneumonoultramicroscopicsilicovolcanoconiosis\n");
printf("\nEnter the letter you want to find the number of\n");
scanf("%c", &lang);
for (i = 0; i <= 46; i++)
if (a == lang[i]) {
count++;
}
printf("Number of %c is %d..\n", a, count);

return 0;

最佳答案

你的 scanf 是问题所在。

尝试:

 scanf("%c",&a);

关于c - 如何计算给定单词中某个字母出现的次数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43709476/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com