From 873a4e98cbbe032bb9a61aefb515b71ef7d90363 Mon Sep 17 00:00:00 2001 From: fdai7820 Date: Thu, 8 Feb 2024 17:18:42 +0100 Subject: [PATCH] =?UTF-8?q?Funtion=20f=C3=BCr=20Subtraktion?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/duellist-spielesammlung-projekt.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index 62c5597..a6a995d 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -384,3 +384,17 @@ int minesweeper() { return 1; } +int generateRandomNumber(int min, int max) { + return rand() % (max - min + 1) + min; +} + +int addition(int a, int b) { + return a + b; +} + + +int subtraction(int a, int b) { + return a - b; +} + +