From d8939663cdc6375ac1f849861a5036a303410825 Mon Sep 17 00:00:00 2001 From: Ronja Awe Date: Thu, 2 Feb 2023 15:44:25 +0100 Subject: [PATCH] refactoring: labyrinth ausgabe verbessert --- src/c/labyrinth.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/c/labyrinth.c b/src/c/labyrinth.c index 91a0c9d..7cb860a 100644 --- a/src/c/labyrinth.c +++ b/src/c/labyrinth.c @@ -70,7 +70,15 @@ void labyrinthschritte(lab laby, int hoehe, int breite, int schritte, int versuc for(int i = 0; i < hoehe; i++){ for(int j = 0; j < breite; j++){ - printf("%c ", laby[i][j]); + if(laby[i][j] == '1'){ + printf("■ "); + } + else if(laby[i][j] == WEG){ + printf(" "); + } + else{ + printf("%c ", laby[i][j]); + } } printf("\n"); } @@ -90,7 +98,7 @@ void labyrinthschritte(lab laby, int hoehe, int breite, int schritte, int versuc void labyrinthauswahl(int auswahl){ - printf("Bitte wählen Sie ein Labyrinth aus\n"); + printf("Pleas choose a maze.\n"); switch (auswahl){ case 1: