From c49a4efde206b6dd6a513be19b353f05abc4e48f Mon Sep 17 00:00:00 2001 From: fdai7820 Date: Thu, 8 Feb 2024 19:09:05 +0100 Subject: [PATCH] Refactoring: Code kurzer gefasst --- src/main/duellist-spielesammlung-projekt.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index 4be8edf..1739ca5 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -387,9 +387,8 @@ int minesweeper() { /*------------------------------------------------------------------------------------------*/ -int zufallszahl(int min, int max) { - return rand() % (max - min + 1) + min; -} +int zufallszahl(int min, int max) +{return rand() % (max - min + 1) + min;} int add(int a, int b) { return a + b;