From 8a490d477e52835a3445d9752f9bfd6469d499de Mon Sep 17 00:00:00 2001 From: fdai6674 Date: Sat, 4 Feb 2023 23:15:51 +0100 Subject: [PATCH] =?UTF-8?q?Fragen=201-3=20f=C3=BCr=20Kategorie=20Allgemein?= =?UTF-8?q?wissen=20Level=201?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.c | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index 10d4f1b..226a0f6 100644 --- a/src/main.c +++ b/src/main.c @@ -749,11 +749,37 @@ int main() } }; - Category categories[4] = {fussball, kunst, rechnen}; + Question allgQst1 = {.question = "Wie heißt die Hauptstadt von Frankreich?", .answer = "Paris"}; + Question allgQst2 = {.question = "Wie heißt die Hauptstadt von Deutschland?", .answer = "Berlin"}; + Question allgQst3 = {.question = "Wie heißt die Hauptstadt von Japan?", .answer = "Tokio"}; + + + Level allgLevel1 = + { + .questions = + { + allgQst1, allgQst2, allgQst3 + }, + .size = 3 // size = anzahl an Fragen + }; + + + + Category allgemein = + { + .size = 1, // size = Anzahl Level + .name = "Allgemein", + .lvlQuestions = + { + allgLevel1 + } + }; + + Category categories[4] = {fussball, kunst, rechnen, allgemein}; printf("Willkommen beim Quiz-Spiel! Beantworten Sie die folgenden Fragen:\n"); - int catCount = 3; // anzahl an kategorien + int catCount = 4; // anzahl an kategorien char input[256]; startGame(catCount, input, categories);