From 480637e18c6e5efcd86fa4c6210fdbc38c74e259 Mon Sep 17 00:00:00 2001 From: Christian Reum Date: Wed, 7 Feb 2024 16:41:18 +0100 Subject: [PATCH] refactoring: 14 Kommentar zu Ablauf innerhalb if-Funktion am Beispiel Runde 1-5 --- src/wwm.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/wwm.c b/src/wwm.c index 57b912c..6ad6a6d 100644 --- a/src/wwm.c +++ b/src/wwm.c @@ -161,25 +161,27 @@ void wwm(){ printf("Congratulations ! You have won 1.000.000 $"); return; } - + // If für Runde 1-5 if (r <= 5) { printf("__________________________________________________ \n\n"); printf("You are at stage %d and have %d $\n", runde, geld); - crandomNumber(); - printf("Question %d: %s\n", runde + 1, question_easy[frage]); + crandomNumber(); //Berechnung welcher Frage + printf("Question %d: %s\n", runde + 1, question_easy[frage]); //Frage Ausgabe for (int i = 0; i < 4; i++) { printf("%d. %s \n", i + 1, answers_easy[frage][i]); - } + } // Antwortenb Ausgabe - ceingabe(); - + ceingabe(); // Eingabe Antwort, automatische Eingabeprüfung auf Zahlen 1-4 + // Prüfung auf korrekte Antwort + // korrekte Antwort if (useranswer == correctAnswer_easy[frage]) { printf("That is correct!\n"); runde++; setGeld(runde); } + // falsche Antwort else { printf("That is a shame! That is wrong!\n You lost %d $", geld); return;