From f57affc767b6fa4e30c08183d6b4089bd23dc27f Mon Sep 17 00:00:00 2001 From: fdai7820 Date: Thu, 8 Feb 2024 18:03:07 +0100 Subject: [PATCH] Funtion Modullo --- src/main/duellist-spielesammlung-projekt.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index 905f46c..a0e9cf2 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -409,8 +409,14 @@ int division(int a, int b) { } } - - +int modulo(int a, int b) { + if (b != 0) { + return a % b; + } else { + printf("Modulo durch Null nicht erlaubt. Gib eine andere Zahl ein.\n"); + return 0; + } +}