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