这是我在 com sci 实验室的期末考试,我想知道 main 函数是否正确,我刚刚添加了另一个函数,因为 idk 如何在字符串中使用递归来计算这个字符出现的次数。我真的有一个很难做到这一点。请帮我。:)
#include<stdio.h>
#include<string.h>
int count_chars(const char* string, char ch);
int main()
{
char string[BUFSIZ];
char ch[2];
int count;
printf ("Please enter a line of text, max %d characters\n", sizeof(string));
if (fgets(string, sizeof(string), stdin) != NULL)
printf ("You entered: %s\n", string);
printf("Input the letter you want to be counted: ");
gets(ch);
count=count_chars(const char* string, char ch);
printf("The number of times the letter occurs in the word above is: %d", count);
return 0;
}
int count_chars(const char* string, char ch)
{
int count = 0;
for(; *string; count += (*string++ == ch)) ;
return count;
}
例如; 输入是:“aabbabc”那么你需要找到的字符是b,所以程序应该像这样运行:(这是给我的提示)但是他说你应该把它转换成一个(函数?)我试过了,但不起作用。
"b" "aabbabc"
if 'b'==st[0]
1+cnt('b', "abbabc");
else
cnt('b' , "abbabc");