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; + } +}