From b846de9f148754dee2447a8bcf3cd546125c061b Mon Sep 17 00:00:00 2001 From: fdai7731 Date: Thu, 8 Feb 2024 02:39:50 +0100 Subject: [PATCH] function holeSpielerAntwort --- src/main/c/Mathe.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main/c/Mathe.c b/src/main/c/Mathe.c index 5355502..2ab90ec 100644 --- a/src/main/c/Mathe.c +++ b/src/main/c/Mathe.c @@ -116,7 +116,13 @@ int dividiere(int zahl1, int zahl2) { void zeigeAuswahl(const char* text) { printf("%s\n", text); } - +//24 +int holeSpielerAntwort() { + int spielerAntwort; + zeigeAuswahl("Deine Antwort: "); + scanf("%d", &spielerAntwort); + return spielerAntwort; +}