Follow along with the video below to see how to install our site as a web app on your home screen.
Nota: This feature may not be available in some browsers.
Sub Main
Dim num(10)
Dim ruota(12)
Dim posta(5)
Ini = 9909 ' inizio estrazioni
fin = 9988 ' fine estrazioni
r = 1 ' ruota
clp = 79 ' colpi
ruota(1) = r
Scrivi "Ruota di..." & NomeRuota(r),1
Scrivi
For es = Ini To fin
a = Estratto(es,r,1)
b = Estratto(es,r,2)
c = Estratto(es,r,3)
d = Estratto(es,r,4)
e = Estratto(es,r,5)
'Scrivi StringaEstratti(es,1)
'----- modulo fuori 8110 NO !! 8110 <> 8100 -----------
aa = FuoriX((a*90),8100) + b
bb = FuoriX((b*90),8100) + c
cc = FuoriX((c*90),8100) + d
dd = FuoriX((d*90),8100) + e
ee = FuoriX((e*90),8100) + a
Scrivi aa & " " & bb & " " & cc & " " & dd & " " & ee
'--------------------------------------
'----- modulo diemme ------------------
a1 = aa*16
a2 = bb*8
a3 = cc*4
a4 = dd*2
a5 = ee*1
'-------------------------------------
Scrivi a1 & " " & a2 & " " & a3 & " " & a4 & " " & a5 & " = ",0,0
Scrivi(a1 + a2 + a3 + a4 + a5) * 6271
'-------- 3 fase somma modulo diemme-----------------
x =(a1 + a2 + a3 + a4 + a5) * 6271
x1 =(x *2) - aa
x2 =(x1*2) - bb '<<< Attento qui! NN X >>> X1 ecc ... a seguire
x3 =(x2*2) - cc
x4 =(x3*2) - dd
x5 =(x4*2) - ee
Scrivi x1 & " " & x2 & " " & x3 & " " & x4 & " " & x5
'--------passaggio errato da capire NON FUNZIONA Fuori8100 -----
' Sostituito con Funzione di Rosanna
xx1 = FN(x1)
xx2 = FN(x2)
xx3 = FN(x3)
xx4 = FN(x4)
xx5 = FN(x5)
Scrivi xx1 & " " & xx2 & " " & xx3 & " " & xx4 & " " & xx5
'----------- INTERO --------------------------------------------
y1 = Int(xx1/90) 'versione classica
y2 = Int(xx2/90)
y3 = Int(xx3/90)
y4 = Int(xx4/90)
Y5 = Int(xx5/90)
Scrivi y1 & " " & y2 & " " & y3 & " " & y4 & " " & y5
'---------- RESTO ----------------------------------------------
z1 = Fuori90(xx1 -(90*y1))
z2 = Fuori90(xx2 -(90*y2))
z3 = Fuori90(xx3 -(90*y3))
z4 = Fuori90(xx4 -(90*y4))
z5 = Fuori90(xx5 -(90*y5))
Scrivi z1 & " " & z2 & " " & z3 & " " & z4 & " " & z5
'Utilizzato modello preesistente ------------------------------
num(9) = y5'Fuori90(Left(xx5,2))
num(10) = z5'Fuori90(Right(xx5,2))
Call VerificaEsito(num,ruota,es + 1,1,clp,Nothing,retesito,retcolpi,retestratti,retid)
Scrivi GetInfoEstrazione(es) & " - " & " - " & StringaEstratti(es,r) & " - " & StringaNumeri(num,,True)
Scrivi
ColoreTesto 2
Scrivi " Esito... " & retesito
Scrivi " Colpo...." & retcolpi
Scrivi " Estratti " & retestratti
Scrivi
ColoreTesto 0
Next
End Sub
Function FN(n) ' fuori8100 By Rox
If n -(8100*Int(n/8100)) = 0 Then FN = 8100 Else FN = n -(8100*Int(n/8100))
End Function
'DIEMME.TMP By Joe
Sub Main
Dim num(10)
Dim ruota(12)
Dim posta(5)
Dim retcolpi, Sto
Ini = 3950 ' inizio estrazioni
Fin = EstrazioneFin ' fine estrazioni
r = 1 ' ruota
clp = 250 ' colpi
ruota(1) = ScegliRuota
Scrivi "Ruota di..." & NomeRuota(r),1
Scrivi
For Es = Ini To Fin :
AvanzamentoElab Ini,Fin,Es
a = Estratto(es,r,1)
b = Estratto(es,r,2)
c = Estratto(es,r,3)
d = Estratto(es,r,4)
e = Estratto(es,r,5)
'Scrivi StringaEstratti(es,1)
'----- modulo fuori 8110 NO !! 8110 <> 8100 -----------
aa = FuoriX((a*90),8100) + b
bb = FuoriX((b*90),8100) + c
cc = FuoriX((c*90),8100) + d
dd = FuoriX((d*90),8100) + e
ee = FuoriX((e*90),8100) + a
'Scrivi aa & " " & bb & " " & cc & " " & dd & " " & ee
'--------------------------------------
'----- modulo diemme ------------------
a1 = aa*16
a2 = bb*8
a3 = cc*4
a4 = dd*2
a5 = ee*1
'-------------------------------------
'Scrivi a1 & " " & a2 & " " & a3 & " " & a4 & " " & a5 & " = ",0,0
' Scrivi(a1 + a2 + a3 + a4 + a5) * 6271
'-------- 3 fase somma modulo diemme-----------------
x =(a1 + a2 + a3 + a4 + a5) * 6271
x1 =(x *2) - aa
x2 =(x1*2) - bb '<<< Attento qui! NN X >>> X1 ecc ... a seguire
x3 =(x2*2) - cc
x4 =(x3*2) - dd
x5 =(x4*2) - ee
'Scrivi x1 & " " & x2 & " " & x3 & " " & x4 & " " & x5
'--------passaggio errato da capire NON FUNZIONA Fuori8100 -----
' Sostituito con Funzione di Rosanna
xx1 = FN(x1)
xx2 = FN(x2)
xx3 = FN(x3)
xx4 = FN(x4)
xx5 = FN(x5)
'Scrivi xx1 & " " & xx2 & " " & xx3 & " " & xx4 & " " & xx5
'----------- INTERO --------------------------------------------
y1 = Int(xx1/90) 'versione classica
y2 = Int(xx2/90)
y3 = Int(xx3/90)
y4 = Int(xx4/90)
Y5 = Int(xx5/90)
'Scrivi y1 & " " & y2 & " " & y3 & " " & y4 & " " & y5
'---------- RESTO ----------------------------------------------
z1 = Fuori90(xx1 -(90*y1))
z2 = Fuori90(xx2 -(90*y2))
z3 = Fuori90(xx3 -(90*y3))
z4 = Fuori90(xx4 -(90*y4))
z5 = Fuori90(xx5 -(90*y5))
'Scrivi z1 & " " & z2 & " " & z3 & " " & z4 & " " & z5
'Utilizzato modello preesistente ------------------------------
num(9) = y5'Fuori90(Left(xx5,2))
num(10) = z5'Fuori90(Right(xx5,2))
Call VerificaEsitoTurbo(num,ruota,es + 1,1,clp,Nothing,retesito,retcolpi,retestratti,retid)
'Scrivi GetInfoEstrazione(es) & " - " & " - " & StringaEstratti(es,r) & " - " & StringaNumeri(num,,True)
'Scrivi
'Scrivi " Esito... " & retesito
If retcolpi > Mx Then Mx = retcolpi
If retcolpi > 100 Then Scrivi :ColoreTesto 2
Scrivi " Colpo... " & retcolpi
'Scrivi " Estratti " & retestratti
'Scrivi
If retcolpi > 100 Then ColoreTesto 0 : Scrivi
Next
Scrivi
Scrivi "Massimo trovato : " & Mx
End Sub
Function FN(n) ' fuori8100 By Rox
If n -(8100*Int(n/8100)) = 0 Then FN = 8100 Else FN = n -(8100*Int(n/8100))
End Function
'DIEMME.TMP By Joe
Grazie mille joe è perfetto,
solamente se è possibile inserire la data di ricavo della previsione, altrimenti va benissimo cosi!!
Grazie, grazie, grazie
Sub Main
Dim num(10)
Dim ruota(12)
Dim posta(5)
Dim retcolpi,Sto
Ini = 3950 ' inizio estrazioni
Fin = EstrazioneFin ' fine estrazioni
r = ScegliRuota' ruota
clp = 250 ' colpi
ruota(1) = R
Scrivi "Ruota di..." & NomeRuota(r),1
Scrivi
For Es = Ini To Fin :
AvanzamentoElab Ini,Fin,Es
a = Estratto(es,r,1)
b = Estratto(es,r,2)
c = Estratto(es,r,3)
d = Estratto(es,r,4)
e = Estratto(es,r,5)
'Scrivi StringaEstratti(es,1)
'----- modulo fuori 8110 NO !! 8110 <> 8100 -----------
aa = FuoriX((a*90),8100) + b
bb = FuoriX((b*90),8100) + c
cc = FuoriX((c*90),8100) + d
dd = FuoriX((d*90),8100) + e
ee = FuoriX((e*90),8100) + a
'Scrivi aa & " " & bb & " " & cc & " " & dd & " " & ee
'--------------------------------------
'----- modulo diemme ------------------
a1 = aa*16
a2 = bb*8
a3 = cc*4
a4 = dd*2
a5 = ee*1
'-------------------------------------
'Scrivi a1 & " " & a2 & " " & a3 & " " & a4 & " " & a5 & " = ",0,0
' Scrivi(a1 + a2 + a3 + a4 + a5) * 6271
'-------- 3 fase somma modulo diemme-----------------
x =(a1 + a2 + a3 + a4 + a5) * 6271
x1 =(x *2) - aa
x2 =(x1*2) - bb '<<< Attento qui! NN X >>> X1 ecc ... a seguire
x3 =(x2*2) - cc
x4 =(x3*2) - dd
x5 =(x4*2) - ee
'Scrivi x1 & " " & x2 & " " & x3 & " " & x4 & " " & x5
'--------passaggio errato da capire NON FUNZIONA Fuori8100 -----
' Sostituito con Funzione di Rosanna
xx1 = FN(x1)
xx2 = FN(x2)
xx3 = FN(x3)
xx4 = FN(x4)
xx5 = FN(x5)
'Scrivi xx1 & " " & xx2 & " " & xx3 & " " & xx4 & " " & xx5
'----------- INTERO --------------------------------------------
y1 = Int(xx1/90) 'versione classica
y2 = Int(xx2/90)
y3 = Int(xx3/90)
y4 = Int(xx4/90)
Y5 = Int(xx5/90)
'Scrivi y1 & " " & y2 & " " & y3 & " " & y4 & " " & y5
'---------- RESTO ----------------------------------------------
z1 = Fuori90(xx1 -(90*y1))
z2 = Fuori90(xx2 -(90*y2))
z3 = Fuori90(xx3 -(90*y3))
z4 = Fuori90(xx4 -(90*y4))
z5 = Fuori90(xx5 -(90*y5))
'Scrivi z1 & " " & z2 & " " & z3 & " " & z4 & " " & z5
'Utilizzato modello preesistente ------------------------------
num(9) = y5'Fuori90(Left(xx5,2))
num(10) = z5'Fuori90(Right(xx5,2))
Scrivi String(49,"-")
Call VerificaEsitoTurbo(num,ruota,es + 1,1,clp,Nothing,retesito,retcolpi,retestratti,retid)
Scrivi GetInfoEstrazione(es) & " - " & StringaEstratti(es,r) & " - " & StringaNumeri(num,,True)
Scrivi GetInfoEstrazione(es + retcolpi) & " - " & StringaEstratti(es + retcolpi,r)
If retcolpi > Mx Then Mx = retcolpi
Scrivi "[Colpo] [" & FormatSpace(retcolpi,3,True) & "] " & Space(12) & Right(retestratti,15)
Next
Scrivi
Scrivi "Massimo trovato : " & Mx
End Sub
Function FN(n) ' fuori8100 By Rox
If n -(8100*Int(n/8100)) = 0 Then FN = 8100 Else FN = n -(8100*Int(n/8100))
End Function
'DIEMME.TMP By Joe
Kondor13 ha scritto:
Come vedi nell' immagine 1 c' è un solo numero, perché dal calcolo finale risulta come previsione 0-21 e nella numerazione finita lo zero risulta 90, quindi la vera previsione sarebbe 90.21.
Poi nell' immagine 2 ci sono due numeri uguali e questo tipo di previsione non devono essere conteggiate nel calcolo del max storico.
Ciao Kondor.
Sub Main
Dim num(10)
Dim ruota(12)
Dim posta(5)
Dim retcolpi,Sto
Ini = 3950 ' inizio estrazioni
Fin = EstrazioneFin ' fine estrazioni
r = ScegliRuota' ruota
clp = 250 ' colpi
ruota(1) = R
Scrivi "Ruota di..." & NomeRuota(r),1
Scrivi
For Es = Ini To Fin :
AvanzamentoElab Ini,Fin,Es
a = Estratto(es,r,1)
b = Estratto(es,r,2)
c = Estratto(es,r,3)
d = Estratto(es,r,4)
e = Estratto(es,r,5)
'Scrivi StringaEstratti(es,1)
'----- modulo fuori 8110 NO !! 8110 <> 8100 -----------
aa = FuoriX((a*90),8100) + b
bb = FuoriX((b*90),8100) + c
cc = FuoriX((c*90),8100) + d
dd = FuoriX((d*90),8100) + e
ee = FuoriX((e*90),8100) + a
'Scrivi aa & " " & bb & " " & cc & " " & dd & " " & ee
'--------------------------------------
'----- modulo diemme ------------------
a1 = aa*16
a2 = bb*8
a3 = cc*4
a4 = dd*2
a5 = ee*1
'-------------------------------------
'Scrivi a1 & " " & a2 & " " & a3 & " " & a4 & " " & a5 & " = ",0,0
' Scrivi(a1 + a2 + a3 + a4 + a5) * 6271
'-------- 3 fase somma modulo diemme-----------------
x =(a1 + a2 + a3 + a4 + a5) * 6271
x1 =(x *2) - aa
x2 =(x1*2) - bb '<<< Attento qui! NN X >>> X1 ecc ... a seguire
x3 =(x2*2) - cc
x4 =(x3*2) - dd
x5 =(x4*2) - ee
'Scrivi x1 & " " & x2 & " " & x3 & " " & x4 & " " & x5
'--------passaggio errato da capire NON FUNZIONA Fuori8100 -----
' Sostituito con Funzione di Rosanna
xx1 = FN(x1)
xx2 = FN(x2)
xx3 = FN(x3)
xx4 = FN(x4)
xx5 = FN(x5)
'Scrivi xx1 & " " & xx2 & " " & xx3 & " " & xx4 & " " & xx5
'----------- INTERO --------------------------------------------
y1 = Int(xx1/90) 'versione classica
y2 = Int(xx2/90)
y3 = Int(xx3/90)
y4 = Int(xx4/90)
Y5 = Int(xx5/90)
'Scrivi y1 & " " & y2 & " " & y3 & " " & y4 & " " & y5
'---------- RESTO ----------------------------------------------
z1 = Fuori90(xx1 -(90*y1))
z2 = Fuori90(xx2 -(90*y2))
z3 = Fuori90(xx3 -(90*y3))
z4 = Fuori90(xx4 -(90*y4))
z5 = Fuori90(xx5 -(90*y5))
'Scrivi z1 & " " & z2 & " " & z3 & " " & z4 & " " & z5
'Utilizzato modello preesistente ------------------------------
num(9) = fuori90(y5)'Fuori90(Left(xx5,2))
num(10) = Fuori90(z5)'Fuori90(Right(xx5,2))
If num(9) <> num(10) Then
Scrivi String(49,"-")
Call VerificaEsitoTurbo(num,ruota,es + 1,1,clp,Nothing,retesito,retcolpi,retestratti,retid)
Scrivi GetInfoEstrazione(es) & " - " & StringaEstratti(es,r) & " - " & StringaNumeri(num,,True)
Scrivi GetInfoEstrazione(es + retcolpi) & " - " & StringaEstratti(es + retcolpi,r)
If retcolpi > Mx Then Mx = retcolpi
Scrivi "[Colpo] [" & FormatSpace(retcolpi,3,True) & "] " & Space(12) & Right(retestratti,15)
End If
Next
Scrivi
Scrivi "Massimo trovato : " & Mx
End Sub
Function FN(n) ' fuori8100 By Rox
If n -(8100*Int(n/8100)) = 0 Then FN = 8100 Else FN = n -(8100*Int(n/8100))
End Function
'DIEMME.TMP By Joe
Sub Main
Dim num(10)
Dim ruota(12)
Dim posta(5)
Dim retcolpi,Sto
Ini = 3950 ' inizio estrazioni
Fin = EstrazioneFin ' fine estrazioni
r = ScegliRuota' ruota
clp = 1000 ' colpi
ruota(1) = R
Scrivi "Ruota di..." & NomeRuota(r),1
Scrivi
For Es = Ini To Fin :
AvanzamentoElab Ini,Fin,Es
a = Estratto(es,r,1)
b = Estratto(es,r,2)
c = Estratto(es,r,3)
d = Estratto(es,r,4)
e = Estratto(es,r,5)
'Scrivi StringaEstratti(es,1)
'----- modulo fuori 8110 NO !! 8110 <> 8100 -----------
aa = FuoriX((a*90),8100) + b
bb = FuoriX((b*90),8100) + c
cc = FuoriX((c*90),8100) + d
dd = FuoriX((d*90),8100) + e
ee = FuoriX((e*90),8100) + a
'Scrivi aa & " " & bb & " " & cc & " " & dd & " " & ee
'--------------------------------------
'----- modulo diemme ------------------
a1 = aa*16
a2 = bb*8
a3 = cc*4
a4 = dd*2
a5 = ee*1
'-------------------------------------
'Scrivi a1 & " " & a2 & " " & a3 & " " & a4 & " " & a5 & " = ",0,0
' Scrivi(a1 + a2 + a3 + a4 + a5) * 6271
'-------- 3 fase somma modulo diemme-----------------
x =(a1 + a2 + a3 + a4 + a5) * 6271
x1 =(x *2) - aa
x2 =(x1*2) - bb '<<< Attento qui! NN X >>> X1 ecc ... a seguire
x3 =(x2*2) - cc
x4 =(x3*2) - dd
x5 =(x4*2) - ee
'Scrivi x1 & " " & x2 & " " & x3 & " " & x4 & " " & x5
'--------passaggio errato da capire NON FUNZIONA Fuori8100 -----
' Sostituito con Funzione di Rosanna
xx1 = FN(x1)
xx2 = FN(x2)
xx3 = FN(x3)
xx4 = FN(x4)
xx5 = FN(x5)
'Scrivi xx1 & " " & xx2 & " " & xx3 & " " & xx4 & " " & xx5
'----------- INTERO --------------------------------------------
y1 = Int(xx1/90) 'versione classica
y2 = Int(xx2/90)
y3 = Int(xx3/90)
y4 = Int(xx4/90)
Y5 = Int(xx5/90)
'Scrivi y1 & " " & y2 & " " & y3 & " " & y4 & " " & y5
'---------- RESTO ----------------------------------------------
z1 = Fuori90(xx1 -(90*y1))
z2 = Fuori90(xx2 -(90*y2))
z3 = Fuori90(xx3 -(90*y3))
z4 = Fuori90(xx4 -(90*y4))
z5 = Fuori90(xx5 -(90*y5))
'Scrivi z1 & " " & z2 & " " & z3 & " " & z4 & " " & z5
'Utilizzato modello preesistente ------------------------------
num(1) = Fuori90(y1)
num(2) = Fuori90(z1)
num(3) = Fuori90(y2)
num(4) = Fuori90(z2)
num(5) = Fuori90(y3)
num(6) = Fuori90(z3)
num(7) = Fuori90(y4)
num(8) = Fuori90(z4)
num(9) = Fuori90(y5)'Fuori90(Left(xx5,2))
num(10) = Fuori90(z5)'Fuori90(Right(xx5,2))
If num(9) <> num(10) Then
Scrivi String(49,"-")
Call VerificaEsitoTurbo(num,ruota,es + 1,2,clp,Nothing,retesito,retcolpi,retestratti,retid)
Scrivi GetInfoEstrazione(es) & " - " & StringaEstratti(es,r) & " - " & StringaNumeri(num,,True)
Scrivi GetInfoEstrazione(es + retcolpi) & " - " & StringaEstratti(es + retcolpi,r)
If retcolpi > Mx Then Mx = retcolpi
Scrivi "[Colpo] [" & FormatSpace(retcolpi,3,True) & "] " & Space(12) & Right(retestratti,15)
End If
Next
Scrivi
Scrivi "Massimo trovato : " & Mx
End Sub
Function FN(n) ' fuori8100 By Rox
If n -(8100*Int(n/8100)) = 0 Then FN = 8100 Else FN = n -(8100*Int(n/8100))
End Function
'DIEMME.TMP By Joe