From 9cd079cfca21a8eec8424d878adea39aac80d405 Mon Sep 17 00:00:00 2001 From: fdai7754 Date: Tue, 6 Feb 2024 19:26:30 +0100 Subject: [PATCH] refactoring: zufallszahl in funktion ausgelagert --- src/zahlenraten.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/zahlenraten.c b/src/zahlenraten.c index 1543938..f2b9a26 100644 --- a/src/zahlenraten.c +++ b/src/zahlenraten.c @@ -2,6 +2,12 @@ #include #include +int gib_zufallszahl() { + srand(time(NULL)); + int zahl = rand() % 100 + 1; + return zahl; +} + void leistung(int versuch, int leistung_toll, int leistung_ok) { if (versuch <= leistung_toll) { printf("Tolle Leistung!"); @@ -16,9 +22,7 @@ void leistung(int versuch, int leistung_toll, int leistung_ok) { void run_zahlenraten() { - srand(time(NULL)); - - int zahl = rand() % 100 + 1; + int zahl = gib_zufallszahl(); int leistung_toll = 3; int leistung_ok = 7;