From 7e2d02d86c61603a4f841752bff0e802e453b805 Mon Sep 17 00:00:00 2001 From: Erwin Minaev Date: Fri, 9 Feb 2024 12:18:40 +0100 Subject: [PATCH] add bereich4 3. Frage --- src/main/duellist-spielesammlung-projekt.c | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index a2cb95d..c26e2e8 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -1088,5 +1088,31 @@ int bereich1(char name1[100], char name2[100]){ printf("Ihre Antwort ist richtig!\n\n"); zaehler2++; } + else + printf("Ihre Antwort ist falsch!\n\n"); + + printf("----------------------------\n"); + printf("Die 3. Frage fuer %s: \n", name1); + printf("----------------------------\n"); + printf("Was ist die Hauptstadt von Kanada?\n"); + printf("1. Ottawa\t\t2. Toronto\n3. Edmonton\t\t4. Vancouver\n"); + scanf("%d", &antwort); + if(antwort==1){ + printf("Ihre Antwort ist richtig!\n\n"); + zaehler1++; + } + else + printf("Ihre Antwort ist falsch!\n\n"); + + printf("----------------------------\n"); + printf("Die 3. Frage fuer %s: \n", name2); + printf("----------------------------\n"); + printf("Was ist die Hautpstadt von Russland?\n"); + printf("1. Moskau\t\t2. St. Petersburg\n3. Nowosibirsk\t\t4. Jekaterinburg\n"); + scanf("%d", &antwort); + if(antwort==1){ + printf("Ihre Antwort ist richtig!\n\n"); + zaehler2++; + } else printf("Ihre Antwort ist falsch!\n\n"); \ No newline at end of file