From 28d82c12e6c06adb301da7e5c0f9f1c3633ecc2d Mon Sep 17 00:00:00 2001 From: Christian Reum Date: Mon, 5 Feb 2024 18:22:41 +0100 Subject: [PATCH] =?UTF-8?q?refactoring=202:=20neue=20Zeile=20nach=20Ausgab?= =?UTF-8?q?e=20richtig/falsch=20und=20=C3=84nderung=20Ausgabe=20falsch?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/wwm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wwm.c b/src/wwm.c index 0d1d61d..f57d93f 100644 --- a/src/wwm.c +++ b/src/wwm.c @@ -46,11 +46,11 @@ void wwm(){ if (useranswer == correctAnswer[frage]) { - printf("That is correct!"); + printf("That is correct!\n"); runde++; } else { - printf("That is wrong!"); + printf("What a shame! That is wrong!\n"); } }