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