From a2727822d668b77dacebbf521845a802df36743b Mon Sep 17 00:00:00 2001 From: fdai7731 Date: Thu, 8 Feb 2024 02:16:11 +0100 Subject: [PATCH] function holeSpielerAntwort --- src/main/c/Mathe.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/c/Mathe.c b/src/main/c/Mathe.c index dbb1c10..aec59eb 100644 --- a/src/main/c/Mathe.c +++ b/src/main/c/Mathe.c @@ -80,6 +80,13 @@ void zeigeHighscore(int punkte) { printf("Dein aktueller Highscore ist: %d Punkte\n", punkte); } +//24 +int holeSpielerAntwort() { + int spielerAntwort; + zeigeAuswahl("Deine Antwort: "); + scanf("%d", &spielerAntwort); + return spielerAntwort; +}