From cfadf30187e9340df27707bb8c99ce9dfebd6d1d Mon Sep 17 00:00:00 2001 From: fdai7731 Date: Thu, 8 Feb 2024 19:12:51 +0100 Subject: [PATCH] =?UTF-8?q?refactoring:=20L=C3=B6schen=20von=20unn=C3=B6ti?= =?UTF-8?q?gen=20Kommentaren?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/c/Mathe.c | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/src/main/c/Mathe.c b/src/main/c/Mathe.c index 539bf9d..1c75bf5 100644 --- a/src/main/c/Mathe.c +++ b/src/main/c/Mathe.c @@ -5,44 +5,46 @@ #include "Mathe.h" -//3 +void initialisiereZufallsgenerator(); + + int generiereZufallszahl(int min, int max); -//4 + char generiereZufallsOperator(); -//5 + int addiere(int zahl1, int zahl2); -//6 + int subtrahiere(int zahl1, int zahl2); -//7 + int multipliziere(int zahl1, int zahl2); -//8 + int dividiere(int zahl1, int zahl2); -//9 + int berechneErgebnis(int zahl1, int zahl2, char operator); -//10 + void spieleRunde(int schwierigkeitsgrad); -//11 + void zeigeAnleitung(); -//12 + void zeigeHighscore(int punkte); -//13 + int holeSpielerAntwort(); -//14 + void bewerteAntwort(int spielerAntwort, int ergebnis, int* punkte); -//15 + void zeigeRundenEnde(int punkte); -//16 + void zeigeAuswahl(const char* text); //17