From 7fb20061ee18c16c3b0623d8cea26d121d631959 Mon Sep 17 00:00:00 2001 From: Erwin Minaev Date: Fri, 9 Feb 2024 12:21:33 +0100 Subject: [PATCH] add bereich5 2. 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 422c996..b57ff59 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -1214,5 +1214,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 2. Frage fuer %s: \n", name1); + printf("----------------------------\n"); + printf("Wie hiess der 16. Praesident der USA?\n"); + printf("1. Jefferson\t\t2. Lincoln\n3. Washington\t\t4. Madison\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 2. Frage fuer %s: \n", name2); + printf("----------------------------\n"); + printf("Der Titel japanischer Oberbefehlshaber war frueher?\n"); + printf("1. Schogun\t\t2. Schirwan\n3. Schofel\t\t4. Schof\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