From 89ba5bb9bec0f2d1e632d4403743a6efea051de1 Mon Sep 17 00:00:00 2001 From: fdai7731 Date: Thu, 8 Feb 2024 18:44:05 +0100 Subject: [PATCH] =?UTF-8?q?refactoring:=20variabelnnamen=C3=A4nderungen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/c/Mathe.c | 4 ++-- src/main/c/Mathe.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/c/Mathe.c b/src/main/c/Mathe.c index 2a77221..af3b076 100644 --- a/src/main/c/Mathe.c +++ b/src/main/c/Mathe.c @@ -92,8 +92,8 @@ void zeigeRundenEnde(int punkte) { printf("Runde beendet. Du hast insgesamt %d Punkte erreicht.\n", punkte); } //27 -int addiere(int zahl1, int zahl2) { - return zahl1 + zahl2; +int addiere(int ersteZahl, int zweiteZahl) { + return ersteZahl + zweiteZahl; } //28 int subtrahiere(int zahl1, int zahl2) { diff --git a/src/main/c/Mathe.h b/src/main/c/Mathe.h index d0e1b2c..26ef11e 100644 --- a/src/main/c/Mathe.h +++ b/src/main/c/Mathe.h @@ -4,7 +4,7 @@ int berechneErgebnis(int zahl1, int zahl2, char operator); int generiereZufallszahl(int min, int max); int multipliziere(int zahl1, int zahl2); int dividiere(int zahl1, int zahl2); -int addiere(int zahl1, int zahl2); +int addiere(int ersteZahl, int zweiteZahl); int subtrahiere(int zahl1, int zahl2); int multipliziere(int zahl1, int zahl2); #endif // MATHEMATIKSPIE