From 778b8219ddc9d994a45cd306bcf5a3f5a4472556 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 c5a5832..f1f4e22 100644 --- a/src/main/c/Mathe.c +++ b/src/main/c/Mathe.c @@ -118,7 +118,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; +}