Hi, everybody!
i'm trying to make a math worksheet generator for kids, but i need it in this format:
and generate a PDF file with the math problems....
i know how to generate a problems, but idk how to 'format' this
anyone have a ideia how to make this?
Thanks a lot.
p.s: Here is my sum generator code:
Func _Sum_Generator($iMin, $iMax, $iProblems = 100, $iMaxAddends = 2, $bRandomAddends = True, $bUseDecimal = False, $bUseNegative = False)
Local $aGenerated[$iProblems][2]
If $iMaxAddends < 2 Then $iMaxAddends = 2
For $i = 0 To $iProblems -1
$aGenerated[$i][1] = 0
$iAddends = $iMaxAddends -1
If ($bRandomAddends And $iMaxAddends > 2) Then $iAddends = Random(2, $iMaxAddends, 1) -1
For $j = 0 To $iAddends
Local $iOnlyInt = 1, $Negative = 0
If $bUseDecimal Then $iOnlyInt = Random(0,1,1)
If $bUseNegative Then $Negative = Random(0,1,1)
Local $iRandom = Round(Random($iMin, $iMax, $iOnlyInt), 2)
If $Negative Then $iRandom *= -1
If $j = $iAddends Then
$aGenerated[$i][0] &= String($iRandom) & " = "
Else
$aGenerated[$i][0] &= String($iRandom) & " + "
EndIf
$aGenerated[$i][1] += $iRandom
Next
Next
Return $aGenerated
EndFunc