Bjarne Stroustrup “Programming Principles and Practice Using C++”Chapter 4 Try This page 125Using 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 Bjarne StroustrupC++Principles and Practice Using C++ Facebook Twitter Pinterest LinkedIn Previous Post simple custom function Next Post simple while loop Newsletter Updates Enter your email address below to subscribe to our newsletter Subscribe I accept the Privacy Policy