标题:c语言strcmp中统计指定单词个数问题
取消只看楼主
qq644533257
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2016-12-16
 问题点数:0 回复次数:0 
c语言strcmp中统计指定单词个数问题
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
    char s[80];
    int n=0,i;
    gets(s);
    for(i=0;s[i]!='\0';i++)
    {
        if(s[i]=='B')
        {
            if(strcmp(&s[i],"Bubble")==0)
            n=n+1;
        }
    }
    printf("%d",n);
    return 0;
}
输入一串字符串,统计该字符串中Bubble出现的个数。但是无论我打多少个Bubble,最多只能显示1个,为什么?
搜索更多相关主题的帖子: include return 字符串 c语言 单词 
2016-12-16 23:53



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-472502-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.112291 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved