为了账号安全,请及时绑定邮箱和手机立即绑定

c语言字符数组中某字符串的数目?

c语言字符数组中某字符串的数目?

C
慕妹3146593 2019-01-01 10:06:38
c语言字符数组中某字符串的数目
查看完整描述

1 回答

?
浮云间

TA贡献1829条经验 获得超4个赞

简单实现对yes子串个数的识别,参考代码如下:
#include<stdio.h>
int main()
{
char str[80];
int i=0,n=0;
gets(str);
while(str[i]!=0){
if(str[i]=='y')
if(str[i+1]!=0&&str[i+1]=='e')
if(str[i+2]!=0&&str[i+2]=='s')
{++n;i=i+2;}
++i;
}
printf("%d",n);
return 0;
}



查看完整回答
反对 回复 2019-01-16
  • 1 回答
  • 0 关注
  • 539 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信