From c41c8c8edd5c3133ab358d49a6db9172f1f71e39 Mon Sep 17 00:00:00 2001 From: Christian Reum Date: Tue, 6 Feb 2024 21:12:16 +0100 Subject: [PATCH] functional 28: Erweiterung Antworten medium --- src/wwm.c | 47 ++++++++++++++++++++++++++--------------------- 1 file changed, 26 insertions(+), 21 deletions(-) diff --git a/src/wwm.c b/src/wwm.c index 0b9b45c..c00648f 100644 --- a/src/wwm.c +++ b/src/wwm.c @@ -90,24 +90,29 @@ void wwm(){ const char* questions_medium[] = { - "In what year did the Berlin Wall fall?", - "What is the capital city of Brazil?", - "Who is known as the Father of Modern Physics?", - "What is the largest island in the world?", - "What is the chemical symbol for silver?", - "What is the largest bone in the human body?", - "In which year did the Titanic sink?", - "What is the capital city of Argentina?", - "In which year did World War II end?", - "What is the currency of Japan?" + "In what year did the Berlin Wall fall?", + "What is the capital city of Brazil?", + "Who is known as the Father of Modern Physics?", + "What is the largest island in the world?", + "What is the chemical symbol for silver?", + "What is the largest bone in the human body?", + "In which year did the Titanic sink?", + "What is the capital city of Argentina?", + "In which year did World War II end?", + "What is the currency of Japan?" }; const char* answers_medium[][4] = { - {"1989", "1998", "1994", "1990"}, - {"Buenos Aires", "Sao Paulo", "Brasilia", "Rio de Janeiro"}, - {"Thomas Edison", "Marie Curie", "Isaac Newton", "Albert Einstein"}, - {"Australia", "Greenland", "Madascar", "Borneo"}, - {"Au", "Ag", "Su", "Si"} + {"1989", "1998", "1994", "1990"}, + {"Buenos Aires", "Sao Paulo", "Brasilia", "Rio de Janeiro"}, + {"Thomas Edison", "Marie Curie", "Isaac Newton", "Albert Einstein"}, + {"Australia", "Greenland", "Madascar", "Borneo"}, + {"Au", "Ag", "Su", "Si"}, + {"Femur", "Sternum", "tibia", "fibula"}, + {"1910", "1915", "1912", "1920"}, + {"Brasilia", "La Plata", "Rosario", "Buenos Aires"}, + {"1945", "1940", "1948", "1933"}, + {"Yuan", "Yen", "Rupiah", "Rupee"} }; int correctAnswer_medium[] = { @@ -123,15 +128,15 @@ void wwm(){ }; const char* answers_hard[][4] = { - {"A", "B", "0", "AB"}, - {"1999", "1995", "2000", "2002"}, - {"1894 in Rome, Italy", "1896 in Athens, Greece", "1898 in Madrid, Spain", "1890 in Istanbul, Turkey"}, - {"Pennsylvania", "Oregon", "Texas", "Florida"}, - {"Paro", "Punakha", "Thimphu", "Tongsa"} + {"A", "B", "0", "AB"}, + {"1999", "1995", "2000", "2002"}, + {"1894 in Rome, Italy", "1896 in Athens, Greece", "1898 in Madrid, Spain", "1890 in Istanbul, Turkey"}, + {"Pennsylvania", "Oregon", "Texas", "Florida"}, + {"Paro", "Punakha", "Thimphu", "Tongsa"} }; int correctAnswer_hard[] = { - 4, 1, 2, 1, 3 + 4, 1, 2, 1, 3 }; for (int r = 1; r <= 16; r++){