Browse Source

functional 28: Erweiterung Antworten medium

remotes/origin/Christian
Christian Reum 11 months ago
parent
commit
c41c8c8edd
  1. 47
      src/wwm.c

47
src/wwm.c

@ -90,24 +90,29 @@ void wwm(){
const char* questions_medium[] = { 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] = { 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[] = { int correctAnswer_medium[] = {
@ -123,15 +128,15 @@ void wwm(){
}; };
const char* answers_hard[][4] = { 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[] = { int correctAnswer_hard[] = {
4, 1, 2, 1, 3
4, 1, 2, 1, 3
}; };
for (int r = 1; r <= 16; r++){ for (int r = 1; r <= 16; r++){

Loading…
Cancel
Save