From 8beab50f8201551d1c5373a6198629a76d7e4108 Mon Sep 17 00:00:00 2001 From: fdai7820 Date: Thu, 8 Feb 2024 18:15:41 +0100 Subject: [PATCH] Funktion User Antwort --- src/main/duellist-spielesammlung-projekt.c | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index 9656dcd..1252a18 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -465,14 +465,6 @@ int getUserChoice() { return choice; } -int getUserChoice() { - int choice; - if (scanf("%d", &choice) != 1) { - printf("Ungültige Eingabe. Bitte eine Zahl eingeben.\n"); - // Optional: Hier könntest du die Funktion rekursiv aufrufen oder einen Standardwert zurückgeben. - } - return choice; -} void playGame() { int correctAnswers = 0; @@ -540,7 +532,14 @@ void playGame() { displayResult(correctAnswers, totalQuestions); } - +int getUserAnswer() { + int answer; + if (scanf("%d", &answer) != 1) { + printf("Ungültige Eingabe. Bitte eine Zahl eingeben.\n"); + // Optional: Hier könntest du die Funktion rekursiv aufrufen oder einen Standardwert zurückgeben. + } + return answer; +}