统计字符串中特定字符的个数

从键盘输入一串字符串,统计字符串中特定字符的个数(特定字符也需要从键盘输入),并输出个数。

 

 

 

#include “stdio.h”
#include “conio.h”
#include “string.h”

void main()
{  char s[100],ch;
   int i,nch=0;
   printf(“Input a string:”);
   gets(s);
   printf(“Input a searched character:”);
   scanf(“%c”,&ch);

   i=0;
   while(s[i])
     if(s[i++]==ch) nch++;

   printf(“Number of \’%c\’ is %d\n”,ch,nch);
   getch();
}

运行结果:
Input a string:For example!
Input a searched character:e
Number of ’e’ is 2

© 版权声明
THE END
喜欢就支持以下吧
点赞21 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容