From e7f8da783a72894273a01da8bd0d831d9763ef29 Mon Sep 17 00:00:00 2001 From: Erwin Minaev Date: Fri, 9 Feb 2024 12:05:02 +0100 Subject: [PATCH] =?UTF-8?q?add=20bereich2=201.=20H=C3=A4lfte?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/duellist-spielesammlung-projekt.c | 76 +++++++++++++++++++++- 1 file changed, 75 insertions(+), 1 deletion(-) diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c index 417b63f..ff97fdf 100644 --- a/src/main/duellist-spielesammlung-projekt.c +++ b/src/main/duellist-spielesammlung-projekt.c @@ -724,4 +724,78 @@ int bereich1(char name1[100], char name2[100]){ } else printf("%s hat gewonnen!", name2); return 0; - } \ No newline at end of file + } + + int bereich2(char name1[100], char name2[100]){ + int antwort; + int zaehler1 = 0; + int zaehler2 = 0; + + //Fragen und Eingaben + printf("\nSie haben den 1. Bereich gewaehlt ueber Computer, 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("Welches Systemprogramm eines PC ist direkt nach dem Einschalten bereit?\n"); + printf("1. HTML\t\t2. LISP\n3. UMTS\t\t4. BIOS\n"); + scanf("%d", &antwort); + if(antwort==4){ + 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 bedeutet GIF?\n"); + printf("1. Graphics Internet Format`\t\t\t2. Graphics Interchange Format\n3. Graphics Intercommunication Format\t\t4. Grapics Intel Format \n"); + scanf("%d", &antwort); + if(antwort==2){ + 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("Was regelt die Uebertragung von Dokumenten im WWW (World Wide Web)?\n"); + printf("1. HTTP\t\t2. BIOS\n3. HTML\t\t4. UMTS\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 2. Frage fuer %s: \n", name2); + printf("----------------------------\n"); + printf("Wie kann man jpeg auch noch Abkuerzen?\n"); + printf("1. jeg\t\t2. jpg\n3. jp\t\t4. jep \n"); + scanf("%d", &antwort); + if(antwort==2){ + 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("Mit wie vielen hexadezimalen Ziffern laesst sich ein Byte darstellen?\n"); + printf("1. 16\t\t2. 256\n3. 2\t\t4. 8\n"); + scanf("%d", &antwort); + if(antwort==4){ + printf("Ihre Antwort ist richtig!\n\n"); + zaehler1++; + } + else + printf("Ihre Antwort ist falsch!\n\n"); \ No newline at end of file