#include<iostream> #include<string> using namespace std; int main() { string s1,s2; int i=0; cout<<"enter the string"<<endl; getline(cin,s1); cout<<"enter the substring"<<endl; cin>>s2; int count=0; string::iterator it=s1.begin(); while(it!=s1.end()) { if(*it==s2[0]) { int x =s1.find(s2); string subs=s1.substr(x,s2.size()); if(s2==subs) count++; } ++it; } cout<<count<<endl; return 0; } 原文由 deep 发布,翻译遵循 CC BY-SA 4.0 许可协议