统计字符串中the的次数

#include 
#include 
#include 


using namespace std;

int main()
{
    string str;
    getline(cin, str);
    int ans = 0;
    for(int i = 0; str[i]; i++)
    {
        if(str.find("the",i) != str.npos)
        {
            ans++;
            i = str.find("the",i) + 2;
        }
    }
    cout << ans << endl;
    return 0;
}


你可能感兴趣的:(统计字符串中the的次数)