From 0d7696c9e520e17dc5575b7dcd23397101859e9f Mon Sep 17 00:00:00 2001 From: fdai7731 Date: Thu, 8 Feb 2024 02:15:46 +0100 Subject: [PATCH] function zeigeHighscore --- src/main/c/Mathe.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/c/Mathe.c b/src/main/c/Mathe.c index c94ebfe..0139939 100644 --- a/src/main/c/Mathe.c +++ b/src/main/c/Mathe.c @@ -72,6 +72,11 @@ void zeigeAnleitung() { +//23 +void zeigeHighscore(int punkte) { + printf("\n=== Highscore ===\n"); + printf("Dein aktueller Highscore ist: %d Punkte\n", punkte); +}