From a43e8bc4ceefd94326e23230a69c8211a41d5496 Mon Sep 17 00:00:00 2001 From: fdai7820 Date: Thu, 8 Feb 2024 18:03:59 +0100 Subject: [PATCH] Funtion Exponent --- src/main/duellist-spielesammlung-projekt.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index 7a496c8..66ebe52 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -428,7 +428,17 @@ int compare(int a, int b) { } } - +int exponentiation(int base, int exponent) { + if (exponent < 0) { + printf("Negative Exponenten werden nicht unterstützt.\n"); + return 0; + } + int result = 1; + for (int i = 0; i < exponent; ++i) { + result *= base; + } + return result; +}