Z1woo

echo program

Showing 1 changed file with 5 additions and 2 deletions
......@@ -7,9 +7,12 @@ using namespace std;
int main(){
string echo;
cout << "Please enter some text:\n";
cin >> echo;
cout << echo;
while (true) {
cin >> echo;
cout << echo << '\n';
}
return 0;
}
......