+ 6
// Something like a sentinel controlled loop... ? std::string input; while (true) { // do stuff cout << "Continue? : "; cin << input; if (input == "end") break; }
15th Mar 2018, 10:11 AM
Hatsy Rei
Hatsy Rei - avatar