From d012f42b919e73f6551515237954dbf6de0ce9f3 Mon Sep 17 00:00:00 2001 From: fdai7731 Date: Thu, 8 Feb 2024 02:30:27 +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 731d5ff..1fb20f5 100644 --- a/src/main/c/Mathe.c +++ b/src/main/c/Mathe.c @@ -78,6 +78,13 @@ void zeigeHighscore(int punkte) { } +//24 +int holeSpielerAntwort() { + int spielerAntwort; + zeigeAuswahl("Deine Antwort: "); + scanf("%d", &spielerAntwort); + return spielerAntwort; +}