From a115ec575622066ad54692a64ee487720f9ebec2 Mon Sep 17 00:00:00 2001 From: fdai7731 Date: Wed, 7 Feb 2024 23:27:46 +0100 Subject: [PATCH] Query the player's response --- src/main/c/Mathe.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/main/c/Mathe.c b/src/main/c/Mathe.c index c9b2016..dce8acf 100644 --- a/src/main/c/Mathe.c +++ b/src/main/c/Mathe.c @@ -135,4 +135,13 @@ void zeigeAnleitung() { //23 void zeigeHighscore(int punkte) { printf("\n=== Highscore ===\n"); - printf("Dein aktueller Highscore ist: %d Punkte\n", punkte); + printf("Dein aktueller Highscore ist: %d Punkte\n", punkte); + + + +//24 +int holeSpielerAntwort() { + int spielerAntwort; + zeigeAuswahl("Deine Antwort: "); + scanf("%d", &spielerAntwort); + return spielerAntwort;