1 Star 0 Fork 0

Iron2222/C代码之海

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
test_33.c 540 Bytes
一键复制 编辑 原始数据 按行查看 历史
Iron2222 提交于 2021-09-25 12:48 . 计算字符串中子串出现的次数
/*计算字符串中子串出现的次数 */
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
int i,j,k,TLen,PLen,count=0;
char T[50],P[100];
printf("请输入两个字符串,以回车隔开,母串在前,子串在后:\n");
gets(T);
gets(P);
TLen=strlen(T);
PLen=strlen(P);
for(i=0;i<TLen-PLen;i++)
{
for(j=0,k=i;j<PLen && P[j] == T[k];j++,k++)
;
if(j==PLen)
count++;
}
printf("%d\n",count);
system("pause");
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/iron2222/c-code-sea.git
git@gitee.com:iron2222/c-code-sea.git
iron2222
c-code-sea
C代码之海
master

搜索帮助