Juhee

echo revised

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