欢迎来到天天文库
浏览记录
ID:59321247
大小:11.00 KB
页数:1页
时间:2020-09-05
《计算字符串中子串出现的次数的C语言程序.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、题目:计算字符串中子串出现的次数1.程序分析:2.程序源代码:#include"string.h"#include"stdio.h"main(){charstr1[20],str2[20],*p1,*p2;intsum=0;printf("pleaseinputtwostrings");scanf("%s%s",str1,str2);p1=str1;p2=str2;while(*p1!=’ ’){if(*p1==*p2){while(*p1==*p2&&*p2!=’ ’){p1++;p2++;}}elsep1++;if(*p2==’ ’
2、)sum++;p2=str2;}printf("%d",sum);getch();}
此文档下载收益归作者所有