From debcf80b58e633ef1fe7b9f3bd32321548658229 Mon Sep 17 00:00:00 2001 From: Erwin Minaev Date: Fri, 9 Feb 2024 12:16:48 +0100 Subject: [PATCH] add bereich4 1. Frage --- src/main/duellist-spielesammlung-projekt.c | 37 +++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index 3d3cc4e..73e77e3 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -1028,4 +1028,39 @@ int bereich1(char name1[100], char name2[100]){ } else printf("%s hat gewonnen!", name2); return 0; - } \ No newline at end of file + } + + int bereich4(char name1[100], char name2[100]){ + int antwort; + int zaehler1 = 0; + int zaehler2 = 0; + + //Fragen und Eingaben + printf("\nSie haben den 4. Bereich gewaehlt ueber Hauptstaedte, Sie erhalten nun jeweils 5 Fragen zum beantworten!\n"); + printf("Sie werden jeweils eine Antwortmoeglichkeit von 1-4 auswaehlen muessen!\n"); + + printf("----------------------------\n"); + printf("Die 1. Frage fuer %s: \n", name1); + printf("----------------------------\n"); + printf("Was ist die Hauptstadt von Oesterreich?\n"); + printf("1. Tirol\t\t2. Salzburg\n3. Wien\t\t\t4. Wels\n"); + scanf("%d", &antwort); + if(antwort==3){ + printf("Ihre Antwort ist richtig!\n\n"); + zaehler1++; + } + else + printf("Ihre Antwort ist falsch!\n\n"); + + printf("----------------------------\n"); + printf("Die 1. Frage fuer %s: \n", name2); + printf("----------------------------\n"); + printf("Was ist die Hauptstadt von Deutschland?\n"); + printf("1. Berlin\t\t2. Dresden\n3. Hamburg\t\t4. Muenchen\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