From 54fb8a2f800aa174bf30ba4465027f4eb9dbfe53 Mon Sep 17 00:00:00 2001 From: fdai7820 Date: Thu, 8 Feb 2024 18:00:05 +0100 Subject: [PATCH] Funtion Division --- src/main/duellist-spielesammlung-projekt.c | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index 9270399..905f46c 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -399,3 +399,35 @@ int subtraction(int a, int b) { int multiplication(int a, int b) { return a * b; } + +int division(int a, int b) { + if (b != 0) { + return a / b; + } else { + printf("Division durch Null nicht erlaubt. Gib eine andere Zahl ein.\n"); + return 0; + } +} + + + + + + + + + + + + + + + + + + + + + + +