bleep out words

Bjarne Stroustrup “Programming Principles and Practice Using C++”
Chapter 4 Try This page 125
Using std_lib_facilities.h by Bjarne Stroustrup.

Code:

// Philipp Siedler
// Bjarne Stroustrup's PP
// Chapter 4 Try This page 125

#include "std_lib_facilities.h"

int main()
{
    string dislikedWords = "shit";
    cout << "Please write a couple of words: "; for (string words; cin >> words;)
    {
        if (words == dislikedWords) cout << "bleep\n";
        else cout << words << " ";
    }
    keep_window_open();
}
Output:
Please write a couple of words: this is all bull shit
this is all bull bleep

Newsletter Updates

Enter your email address below to subscribe to our newsletter

Leave a Reply

Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124