From e874db38735abd7bbc3a62c679ac5e622539845b Mon Sep 17 00:00:00 2001 From: fdai7731 Date: Thu, 8 Feb 2024 02:16:44 +0100 Subject: [PATCH] function bewerteAntwort --- 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 aec59eb..32df048 100644 --- a/src/main/c/Mathe.c +++ b/src/main/c/Mathe.c @@ -87,7 +87,16 @@ int holeSpielerAntwort() { scanf("%d", &spielerAntwort); return spielerAntwort; } - +//25 + +void bewerteAntwort(int spielerAntwort, int ergebnis, int* punkte) { + if (spielerAntwort == ergebnis) { + printf("Richtig! Du erhältst einen Punkt.\n"); + (*punkte)++; + } else { + printf("Falsch! Die richtige Antwort ist %d\n", ergebnis); + } +}