From ebb6512855ebfe264ed5c2f4951fbcbf7f116cd1 Mon Sep 17 00:00:00 2001 From: Erwin Minaev Date: Fri, 9 Feb 2024 14:33:46 +0100 Subject: [PATCH] add bereich6 4. Frage --- src/main/duellist-spielesammlung-projekt.c | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index 79b8740..02566f7 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -1443,4 +1443,31 @@ int bereich1(char name1[100], char name2[100]){ } else printf("Ihre Antwort ist falsch!\n\n"); + + //Frage 4 beide Spieler mit Eingabe/Ueberpruefung + printf("----------------------------\n"); + rintf("Die 4. Frage fuer %s: \n", name1); + printf("----------------------------\n"); + printf("Wie oft im Jahr brueten Tauben?\n"); + printf("1. Bis zu fuenf mal\t\t2. Bis zu sieben mal\n3. Bis zu sechs mal\t\t4. Bis zu acht mal\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 4. Frage fuer %s: \n", name2); + printf("----------------------------\n"); + printf("Welches Beuteltier ist in Australien nicht heimisch\n"); + printf("1. Wombat\t\t2. Fuchskusu\n3. Wallaby\t\t4. Opossum\n"); + scanf("%d", &antwort); + if(antwort==4){ + printf("Ihre Antwort ist richtig!\n\n"); + zaehler2++; + } + else + printf("Ihre Antwort ist falsch!\n\n"); } \ No newline at end of file