From 929248602f7bdc0262c5d0f2533e2de5c18eca92 Mon Sep 17 00:00:00 2001 From: Erwin Minaev Date: Fri, 9 Feb 2024 12:22:40 +0100 Subject: [PATCH] add bereich5 4. 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 c77d6ca..561775e 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -1266,5 +1266,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 4. Frage fuer %s: \n", name1); + printf("----------------------------\n"); + printf("Im Zweiten Weltkrieg erlitt die sechste Armee der deutschen Wehrmacht eine vernichtende Niederlage bei ...\n"); + printf("1. Warschau\t\t2. Stalingrad\n3. Moskau\t\t4. Verdun\n"); + scanf("%d", &antwort); + if(antwort==2){ + printf("Ihre Antwort ist richtig!\n\n"); + zaehler1++; + } + else + printf("Ihre Antwort ist falsch!\n\n"); + + printf("----------------------------\n"); + printf("Die 4. Frage fuer %s: \n", name2); + printf("----------------------------\n"); + printf("Wann begann der erste Kreuzzug?\n"); + printf("1. 845\t\t2. 1077\n3. 1096\t\t4. 1201\n"); + scanf("%d", &antwort); + if(antwort==3){ + printf("Ihre Antwort ist richtig!\n\n"); + zaehler2++; + } else printf("Ihre Antwort ist falsch!\n\n"); \ No newline at end of file