|
@ -459,10 +459,6 @@ int main() |
|
|
Question rechnenQst11= {.question = "63 + 42", .answer = "105"}; |
|
|
Question rechnenQst11= {.question = "63 + 42", .answer = "105"}; |
|
|
Question rechnenQst12= {.question = "89 + 72", .answer = "161"}; |
|
|
Question rechnenQst12= {.question = "89 + 72", .answer = "161"}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Level rechnenlevel1 = |
|
|
Level rechnenlevel1 = |
|
|
{ |
|
|
{ |
|
|
.questions = |
|
|
.questions = |
|
@ -473,13 +469,31 @@ int main() |
|
|
.size = 12 |
|
|
.size = 12 |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Question rechnenQst13= {.question = "34 + 56 + 12", .answer = "102"}; |
|
|
|
|
|
Question rechnenQst14= {.question = "27 + 48 + 63", .answer = "138"}; |
|
|
|
|
|
Question rechnenQst15= {.question = "73 + 29 + 56", .answer = "158"}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Level rechnenlevel2 = |
|
|
|
|
|
{ |
|
|
|
|
|
.questions = |
|
|
|
|
|
{ |
|
|
|
|
|
rechnenQst13, rechnenQst14, rechnenQst15, |
|
|
|
|
|
}, |
|
|
|
|
|
.size = 3 |
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Category rechnen = |
|
|
Category rechnen = |
|
|
{ |
|
|
{ |
|
|
.size = 1, // size = Anzahl Level |
|
|
.size = 1, // size = Anzahl Level |
|
|
.name = "Kopfrechnen", |
|
|
.name = "Kopfrechnen", |
|
|
.lvlQuestions = |
|
|
.lvlQuestions = |
|
|
{ |
|
|
{ |
|
|
rechnenlevel1, |
|
|
|
|
|
|
|
|
rechnenlevel1, rechnenlevel2, |
|
|
} |
|
|
} |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|