echo.cpp 218 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<string> using namespace std; int main() { string c; cout << "Enter string -> "; cin >> c; if (c == "exit") { return 0; } cout << "you enter \"" << c << "\"" << endl; return 0; }