码迷,mamicode.com
首页 > 其他好文 > 详细

c程序查找字符出现次数

时间:2019-07-01 19:50:40      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:for   highlight   can   ++i   fgets   class   sha   div   return   

#include <stdio.h>
int main(){
    char str[100],ch,M,Empty;
	int i, frequency = 0;
	
    fgets(str, (sizeof str / sizeof str[0]), stdin);

	scanf("%c",&ch);
	scanf("%c",&M);
	scanf("%c",&Empty);

	for(i = 0; str[i] != ‘\0‘; ++i)
	{
		if(ch == str[i])
			++frequency;
	}
	printf("字符 %c 在字符串中出现的次数为 %d\n", ch, frequency);
	return 0;
}

  

c程序查找字符出现次数

标签:for   highlight   can   ++i   fgets   class   sha   div   return   

原文地址:https://www.cnblogs.com/todarcy/p/11116290.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!