From 191e4d61f98a0fd45bea9c436ed9d3242ed0a987 Mon Sep 17 00:00:00 2001 From: fdai7754 Date: Tue, 6 Feb 2024 18:30:53 +0100 Subject: [PATCH] =?UTF-8?q?refactoring:=20schwellwerte=20f=C3=BCr=20leistu?= =?UTF-8?q?ngsbewertung=20als=20globale=20variablen=20angelegt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/zahlenraten.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/zahlenraten.c b/src/zahlenraten.c index 191d438..1543938 100644 --- a/src/zahlenraten.c +++ b/src/zahlenraten.c @@ -2,11 +2,11 @@ #include #include -void leistung(int versuch) { - if (versuch <= 3) { +void leistung(int versuch, int leistung_toll, int leistung_ok) { + if (versuch <= leistung_toll) { printf("Tolle Leistung!"); } - else if (versuch <= 7) { + else if (versuch <= leistung_ok) { printf("Sehr durchschnittliche Leistung!"); } else { @@ -20,6 +20,8 @@ void run_zahlenraten() { int zahl = rand() % 100 + 1; + int leistung_toll = 3; + int leistung_ok = 7; int versuch = 0; int i = 0; int vermutung; @@ -33,7 +35,7 @@ void run_zahlenraten() { if (vermutung == zahl) { printf("Richtig! Du hast die Zahl in %d Versuchen erraten.\n", versuch); - leistung(versuch); + leistung(versuch, leistung_toll, leistung_ok); break; } else if (vermutung < zahl) {