1
0
Fork 0
mirror of https://github.com/dancojocaru2000/y3s2-cciot-hw.git synced 2025-02-22 17:09:35 +02:00

Added forgotten default case

This commit is contained in:
Kenneth Bruen 2022-05-23 01:03:06 +03:00
parent f41914efa9
commit 12f46ca7e7
Signed by: kbruen
GPG key ID: C1980A470C3EE5B1

View file

@ -279,6 +279,8 @@ int main() {
int removed = remove_alt5(students);
cout << "Removed " << removed << " student" << (removed == 1 ? "" : "s") << endl;
break;
default:
cout << "Unknown choice!" << endl;
}
if (exit) {
break;