输入字符串然后统计某个字符出现的次数
发布网友
发布时间:2022-04-25 09:06
我来回答
共2个回答
热心网友
时间:2022-04-25 10:36
#include <stdio.h>
#include <string.h>
#include <conio.h>
int main(void)
{char str[80],ch;
int count=0,i;
printf("Please enter a string!\n");
scanf("%s",str);
clrscr();
printf("Please enter a character!\n");
ch=getchar();
ch=getchar();
clrscr();
for(i=0;i<=strlen(str);i++)
{if(ch==str[i])
count++;}
printf("There are %d same characters!\n",count);
printf("String:%s",str);
getch();
return 0;
}
热心网友
时间:2022-04-25 11:54
程序如下: