output überarbeitet
This commit is contained in:
parent
9b6e8fdc32
commit
7b9b9f06b0
1 changed files with 2 additions and 3 deletions
|
@ -33,10 +33,9 @@ int main()
|
||||||
}
|
}
|
||||||
|
|
||||||
//Zusatzaufgabe: Berechne die minimal notwendige Anzahl an Versuchen
|
//Zusatzaufgabe: Berechne die minimal notwendige Anzahl an Versuchen
|
||||||
std::cout << "\nTreffer! Du hast " << tries << " Versuche gebraucht.\nWenn du ein 2. mal spielen m\x94 \bchtest, gib \"1\" ein. Zum beenden w\x84hle eine beliebige Eingabe: ";
|
std::cout << "\nTreffer! Du hast " << tries << " Versuche gebraucht.\nM\x94 \bchtest du ein 2. mal spielen? y/n ";
|
||||||
getline(std::cin, input);
|
getline(std::cin, input);
|
||||||
std::stringstream(input) >> randNumber;
|
if(input == "y" || input == "Y") again = true;
|
||||||
if(randNumber == 1) again = true;
|
|
||||||
std::cout << "\n\n";
|
std::cout << "\n\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue