Juhee

exit echo

Showing 1 changed file with 4 additions and 0 deletions
......@@ -3,7 +3,11 @@
using namespace std;
int main() {
string echo;
do {
cout << "if you enter 'exit', the program will exit"
cin >> echo;
cout << echo;
}while (echo != "exit")
}
\ No newline at end of file
......