This commit is contained in:
Matti 2024-10-22 09:17:33 +02:00
parent 61c7cfae06
commit 8d40de57fd

View File

@ -31,6 +31,12 @@ void Aufg1Main()
#pragma endregion #pragma endregion
#pragma region Aufgabe2 #pragma region Aufgabe2
/*
* GästeListe
*
* Konsoleninput zur Wahl Liste verlängern/ausgeben/Ende
*/
void showMenu() { void showMenu() {
std::cout << "1 to add Guest" std::cout << "1 to add Guest"
@ -54,7 +60,7 @@ void printAllInVector(std::vector<std::string> &Myvector) {
} }
} }
int Aufg2Main() void Aufg2Main()
{ {
std::vector<std::string> guestList; std::vector<std::string> guestList;
@ -69,7 +75,7 @@ int Aufg2Main()
switch (input) switch (input)
{ {
case 0: case 0:
return 0; return;
case 1: case 1:
std::cin >> name; std::cin >> name;
guestList.push_back(name); guestList.push_back(name);
@ -80,8 +86,6 @@ int Aufg2Main()
break; break;
} }
} }
return 0;
} }
#pragma endregion #pragma endregion