From fb75e45a450264304ef5ab2abf0b5d4fd048c64c Mon Sep 17 00:00:00 2001 From: fdai7820 Date: Thu, 8 Feb 2024 18:04:28 +0100 Subject: [PATCH] Funtion Wurzel --- src/main/duellist-spielesammlung-projekt.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index 66ebe52..389300a 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -440,7 +440,14 @@ int exponentiation(int base, int exponent) { return result; } - +int squareRoot(int number) { + if (number >= 0) { + return (int)sqrt(number); + } else { + printf("Die Quadratwurzel aus einer negativen Zahl ist nicht definiert.\n"); + return 0; + } +}