echo_program.cpp 249 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 #include <iostream> #include <iomanip> using namespace std; int main() { string s; while (true) { cout << "if you enter 'exit', the program will exit: "; cin >> s; if (s == "exit") { break; exit(100); } cout << s << endl; } }