文章
72
粉丝
142
获赞
5
访问
57.7k
#include<iostream>
#include<cstring>
#include<string>
#include<algorithm>
#include<vector>
using namespace std;
int main() {
string str1, str2;
while (cin >> str1 >> str2) {
int num = 0;
int length = str2.size();
while (str1.find(str2) != string::npos) {
num++;
int n = str1.find(str2);
str1.erase(n,length);
}
cout << "num=" << num << ";S3=" << str1 << endl;
}
}
登录后发布评论
暂无评论,来抢沙发