main.cpp 215 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 #include "EchoString.h" using namespace std; int main() { EchoString echo; while (true) { echo.InputString(); if (echo.getEcho() == echo.getExitMessage()) break; echo.PrintScreen(); } return 0; }