From 0f1df905fbe398a6e910f969792861796c3a1972 Mon Sep 17 00:00:00 2001 From: fdai7892 <homan.halimi@informatik.hs-fulda.de> Date: Fri, 9 Feb 2024 16:57:51 +0100 Subject: [PATCH] Korrektur header und c Datei --- src/main/duellist-spielesammlung-projekt.c | 2 +- src/main/duellist-spielesammlung-projekt.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index e4efc58..4a1c5af 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -499,7 +499,7 @@ void playGame() { break; case 8: result = squareRoot(num1); - char operator= "√"; + char operator= sqrt(num1); break; default: printf("Ungültige Operation.\n"); diff --git a/src/main/duellist-spielesammlung-projekt.h b/src/main/duellist-spielesammlung-projekt.h index 0a1d4d7..3228abe 100644 --- a/src/main/duellist-spielesammlung-projekt.h +++ b/src/main/duellist-spielesammlung-projekt.h @@ -64,6 +64,7 @@ void displayMenu(); int getUserChoice(); int getUserAnswer(); void displayResult(int correctAnswers, int totalQuestions); +void playgame(); char namenseingabe(char name1[100], char name2[100]); int bereichauswahl(int zahl);