Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Replace all the words "dog" with "cat"

C++ Basic: Exercise-81 with Solution

Write a C++ program to which replace all the words "dog" with "cat".

Sample Text: The quick brown fox jumps over the lazy dog. You can assume that the number of characters in a text is less than or equal to 1000.

Pictorial Presentation:

C++ Exercises: Replace all the words 'dog' with 'cat'

Sample Solution:

C++ Code:

#include <iostream>
using namespace std;
  
int main()
{
    string str;
    getline(cin, str);
    cout << "Original text: " << str;
        for (int j = 0; j < (int)str.size(); j++) {
            string key = str.substr(j, 3), repl;
            if (key == "fox") {
                repl = "cat";
                for (int k = 0; k < 3; k++) {
                    str[j+k] = repl[k];
                }
            }
        }
       cout <<"\nNew text: " << str << endl;
   
    return 0;
}

Sample Output:

Original text: The quick brown fox jumps over the lazy dog
New text: The quick brown cat jumps over the lazy dog

Flowchart:

Flowchart: Replace all the words 'dog' with 'cat'.

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a C++ program that accepts n different numbers (0 to 100) and s which is equal to the sum of the n different numbers.
Next: Write a C++ program which reads a list of pairs of a word and a page number, and prints the word and a list of the corresponding page numbers.

What is the difficulty level of this exercise?