Sub Main
Dim nu(1),ru(1),nn,posta(1),poste(3),rg(2)
posta(1) = 1
poste(2) = 1
poste(3) = 1
qt = InputBox("QUANTE ESTRAZIONI",,100)
r = InputBox("QUALE RUOTA eseguo i calcoli",,5)
Ad = CInt(InputBox("QUALE ADDIZIONATORE",,1))
p1 = InputBox("QUALE POSIZIONE 1",,1)
p2 = InputBox("QUALE POSIZIONE 2",,2)
rg1 = InputBox(" 1° ruota di gioco ",,5)
rg2 = InputBox(" 2° ruota di gioco ",,6)
rg(1) = rg1
rg(2) = rg2
ReDim T(9)
T(1) = " Info estrazione "
T(2) = " Ruota di calcolo "
T(3) = " Calcoli "
T(4) = " Ambata "
T(5) = " colpo ab "
T(6) = " Estratti "
T(7) = " "
T(8) = " abbinamenti scelti "
T(9) = " esito ambi "
Call InitTabella(T,2,,3,5)
Ini = EstrazioneFin - qt
fin = EstrazioneFin
nn = Array(0,3,17,54,84)
Scrivi "Ruota di calcolo : " & SiglaRuota(r),1
Scrivi "posizioni scelte : " & p1 & "/" & p2,1
Scrivi "Addizionatore scelto : " & ad,1
Scrivi "Ruota di gioco : " & StringaRuote(rg),1
Scrivi "Numeri scelti per abbinamento Ambi..... " & StringaNumeri(nn,,1),1
Scrivi
For es = Ini To fin
a = Estratto(es,r,p1)
b = Estratto(es,r,p2)
nu(1) = Fuori90((a + b) + ad)
ru(1) = r
nn(0) = nu(1)
Call VerificaEsitoTurbo(nu,rg,es + 1,1,10,,esito,clp,estratti,id)
Call VerificaEsitoTurbo(nn,rg,es + 1,2,1,,esitoA,clpA,estrattiA,idA)
ReDim V(9)
V(1) = GetInfoEstrazione(es)
V(2) = SiglaRuota(r)
V(3) = Format2(a) & " + " & Format2(b)
V(4) = StringaNumeri(nu,,1)
V(5) = clp
If esito <> "" Then V(6) = estratti
If esito = "" Then V(6) = " -- "
V(8) = StringaNumeri(nn,,1)
V(9) = estrattiA
Call AddRigaTabella(V,,,3)
ImpostaGiocata 1,nu,rg,posta,10,1
ImpostaGiocata 2,nn,rg,poste,1,2
Gioca es,,,,,False
Next
CreaTabella()
ScriviResoconto
End Sub