C语言计算字符

#include <stdio.h>

int main() {
   char s[] = "TajMahal";     // String Given
   char ch = 'a';             // Character to count

   int i = 0;
   int count = 0;             // Counter

   while(s[i] != '/0') {
      if(s[i] == ch)
         count++;

      i++;
   }

   if(count > 0) {
      if(count == 1)
         printf("%c appears %d time in '%s'", ch, count, s);
      else
         printf("%c appears %d times in '%s'", ch, count, s);
   } else
      printf("%c did not appear in %s", ch, s);

   return 0;
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/265340.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论