C++编程题 求大神解答 4)的第一题 谢谢大神 20

 我来答
Cpp_prokb
2015-04-23 · 超过42用户采纳过TA的回答
知道小有建树答主
回答量:101
采纳率:0%
帮助的人:72.7万
展开全部
#include <iostream>
#include <string>
using namespace std;
int main()
{
string str1;
string str2;
cout << "请输入两个字符串:";
getline(cin,str1);
getline(cin,str2);
int nPos;
int nLength;
int nCount = 0;
nPos = str1.find(str2);
while (-1 != nPos)
{
nLength = nPos+str2.length();
str1 = str1.substr(nLength);
nCount++;
nPos = str1.find(str2);
}
cout << "str2在str1总共出现的次数为:" << nCount << endl;
system("pause");
return 0;
}
--
2022-12-05 广告
图形化编程简单理解为用积木块形式编程,scratch和python也是其中的一种,属于入门级编程,以其简单生动的画面获得无数学生的喜爱,深圳市创客火科技有限公司是一家做教育无人机的公司,旗下有编程无人机,积木无人机及室内外编队,每款飞机含有... 点击进入详情页
本回答由--提供
精品二手挖掘机械
2015-04-23 · TA获得超过205个赞
知道小有建树答主
回答量:209
采纳率:0%
帮助的人:115万
展开全部
#include <iostream>
#include <string>
using namespace std;
int main(){
string s1;
string s2;
cout <<"请输入字符串s1:";
cin >>s1;
cout <<"请输入字符串s2:";
cin >>s2;
if(s1.length()<s2.length()){
cout <<"串s1的长度必须大于s2的长度"<<endl;
return 0;
}
int pos=0;
int count=0;
pos=s1.find(s2,pos);
while(pos!=-1){
count++;
pos=s1.find(s2,pos+s2.length());
}
cout <<"\"" <<s1 <<"\"中\"" <<s2 <<"\"出现的次数为:" <<count <<endl; 
return 0;
}
如果满意请及时采纳!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式