Novità

Ilegend potresti

genios

Advanced Member >PLATINUM<
Ilegend se hai tempo e voglia potresti sviluppare il seguente script : lo scrpt dovrebbe tenere aggiornati per quantità di ritardo espressa in cicli di 9 estrazione per la sorte di almeno 2 ambi all’ interno di un ciclo di 9 estrazioni le decine naturali.

Mi spiego meglio : una decina naturale in una data ruota da quanti cicli di 9 estrazioni non da almeno 2 ambi all’ interno dello stesso ciclo di 9 estrazioni .

L’ uscita del terno ad una stessa estrazione è conteggiato per 3 ambi nel ciclo .
L’ uscita della quaterna ad una stessa estrazione è conteggiata per 6 ambi nel ciclo .
L’ uscita della cinquina ad una stessa estrazione è conteggiata per 10 ambi nel ciclo .

Out dovrebbe essere come l' allegato in foto .

Ciao Eugenio

Decine naturali-1.jpg
 

salvo50

Advanced Member >PLATINUM PLUS<
Ciao Genios, per caso ho trovato questo script di Rosanna, vedi se ti può interessare


Codice:
 'Option Explicit
Sub Main
   '0904_19 Rosanna x serpico 90.ls
   'http://forum.lottoced.com/f12/aiuto-per-elaborazione-script-106534/
   '1°) esaminare un periodo composto da nove estrazioni ed estrapolare tutti i numeri che sono sortiti per due volte.
   '2°) i numeri che devono restare per il pronostico devono essere solo sei. Se sono più di sei non si può fare il pronostico.
   '3°) i sei numeri devono essre disposti in ordine crescente .
   '4°) questa ricerca deve essere fatta per ogni ruota e per ogni estrazione .
   Dim ini,es,r,i,nCon,nInt,sorte,nritr,nfre,clp
   Dim nu(1),ru(1)
   Dim nFreq(90)
   'ReDim nNum(0)
   nInt = CInt(InputBox("Quante estrazioni vuoi analizzare?",,200)) - 1 ' sortite di cui rilevare il ritardo
   sorte = CInt(InputBox("QUALE SORTE PER ESITO vuoi vedere ? ","SORTE",2))
   nritr = CInt(InputBox("QUANTI COLPI A RITROSO",,8))
   nfre = CInt(InputBox("QUANTE FREQUENZE",,2))
   clp = CInt(InputBox("Quanti COLPI Verifico esito ",,10))
   ini = EstrazioneFin - nInt
   For i = 1 To 90 ' ciclo i 90 numeri
      nFreq(i) = 0 'parto da zero
   Next
   Call Scrivi("RICERCA SU BLOCCHI DI " & nritr & " ESTRAZIONI DEI CASI In CUI 6 numeri HANNO FREQUENZA " & nfre,True,True,,1,3)
   'Call Scrivi("dal " & ini & " al " & EstrazioneFin,1)
   Call Scrivi
   ReDim t(6)
   t(1) = "Inizio ID e data ES "
   t(2) = "Fine ID "
   t(3) = " Sorte Esito "
   t(4) = " Richiesta Script "
   t(5) = " Author Script "
   t(6) = " Modifiche "
   Call InitTabella(t,2,,4,5)
   ReDim v(6)
   v(1) = GetInfoEstrazione(ini)
   v(2) = GetInfoEstrazione(EstrazioneFin)
   v(3) = NomeSorte(sorte)
   v(4) = " Serpico 90 e Desperaux "
   v(5) = " Rosanna "
   v(6) = " Mike58 "
   Call AddRigaTabella(v,4,,4)
   Call CreaTabella()
   ReDim at(8)
   at(1) = " Range ID Es "
   at(2) = " Ruota "
   at(3) = " Conta Numeri "
   at(4) = " Stringa Numeri "
   at(5) = " Estratti "
   at(6) = " esito "
   at(7) = " colpo "
   at(8) = " id Es "
   Call InitTabella(at,1,,3,5)
   For es = EstrazioneFin To ini Step - 1
      Messaggio " Elaboro estrazioni.................... " & es
      co = co + 1
      AvanzamentoElab ini,EstrazioneFin,es
      For r = 1 To 11
         If r = 11 Then r = 12
         ru(1) = r
         For i = 1 To 90
            nu(1) = i
            nFreq(i) = SerieFreq(es - nritr,es,nu,ru,1) ' per ogni es e ruota controlla la freq di ogni num
         Next
         nCon = 0 ' contatore = zero
         ReDim nNum(0)
         For i = 1 To 90
            If nFreq(i) = nfre Then
               nCon = nCon + 1 'incremento il contatore
               ReDim Preserve nNum(nCon) ' memorizzo i numeri del contatore
               nNum(nCon) = i ' incremento il contatore
            End If
         Next
         If nCon = 6 Then ' if per condizione = 6 del contatore
            Call VerificaEsito(nNum,ru,es + 1,sorte,clp + 1,,esito,colpi,estratti,id)
            ReDim av(8)
            av(1) = GetInfoEstrazione(es - nritr) & " - " & GetInfoEstrazione(es)
            av(2) = SiglaRuota(r)
            av(3) = Format2(nCon)
            av(4) = StringaNumeri(nNum,,True)
            av(5) = estratti
            av(6) = esito
            av(7) = colpi
            If esito <> "" And colpi < clp + 1 Then av(8) = GetInfoEstrazione(id)
            If esito = "" And colpi = < clp Then av(8) = " In corso "
            If esito = "" And colpi > clp Then av(8) = " Negativo "
            If esito <> "" And colpi > clp Then av(8) = " Esito non valido "
            Call AddRigaTabella(av,,,3)
            '----- blocco colore cella ---------------------
            If av(8) = GetInfoEstrazione(id) Then Call SetColoreCella(8,3,1)
            If av(8) = " In corso " Then Call SetColoreCella(8,2,4)
            If av(8) = " Negativo " Then Call SetColoreCella(8,4,2)
            Call SetColoreCella(4,,7)
            Call SetColoreCella(2,,1)
            Call SetColoreCella(5,,2)
            '------- blocco conta esiti ---------------------
            If esito = "Estratto" Then estra = estra + 1
            If esito = "Ambo" Then amb = amb + 1
            If esito = "Terno" Then ter = ter + 1
            If esito = "Quaterna" Then qua = qua + 1
            If esito = "Cinquina" Then cin = cin + 1
            '----------------------------------------------
            'Call Scrivi(es - 18 & " - " & es & "  " & SiglaRuota(r) & "  ",True,False,,0,2)
            'Call Scrivi(" < " & Format2 (nCon) & " > ",True,False,4,2,2)
            'Call Scrivi ("  " &  StringaNumeri(nNum,,True),True,False,1,5,2)
            'Call Scrivi("    " & estratti & "   " & esito & "  " & " al colpo " & colpi & "  " & id,True,True,3,1,2)
         End If
      Next
   Next
   Call CreaTabella()
   Scrivi "Riepilogo esiti....",1
   Scrivi
   ReDim att(6)
   att(1) = " Casi "
   att(2) = " Estratto "
   att(3) = " Ambi "
   att(4) = " Terni "
   att(5) = " Quaterne "
   att(6) = " Cinquine "
   Call InitTabella(att,1,,3,5)
   ReDim avv(6)
   avv(1) = co
   avv(2) = estra
   avv(3) = amb
   avv(4) = ter
   avv(5) = qua
   avv(6) = cin
   Call AddRigaTabella(avv,3,,3)
   Call CreaTabella(0,0,0,0,1)
End Sub
 

Alien.

Advanced Premium Member
Ciao salvo mi da errore di compliazazione qua :


If esito = "" And colpi = < clp Then av(8) = " In corso "
 

salvo50

Advanced Member >PLATINUM PLUS<
Ciao Alien, devi togliere lo spazio che si è creato tra = e <

cioè da così = <
deve essere così =<

suggerimento

per evitare che ogni volta che lanci questo script li trovi separati

devi scriverli così <= cioè invertirli di posizione
 
Ultima modifica:

joe

Advanced Member >PLATINUM PLUS<
Ciao Eu_

Tu non cambi mai.

Sempre con ste decine!

Codice:
[FONT=Courier New][SIZE=10px][COLOR=#000000][B]DN(0) [/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  5[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  9[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT]
[FONT=Courier New][SIZE=10px][COLOR=#000000][B]DN(1) [/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  5[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  4[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  5[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  5[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  7[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000] 10[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  4[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000] 18[/COLOR][/SIZE][/FONT]
[FONT=Courier New][SIZE=10px][COLOR=#000000][B]DN(2) [/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  9[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  4[/COLOR][/SIZE][/FONT]
[FONT=Courier New][SIZE=10px][COLOR=#000000][B]DN(3) [/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  4[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  4[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  5[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  4[/COLOR][/SIZE][/FONT]
[FONT=Courier New][SIZE=10px][COLOR=#000000][B]DN(4) [/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  5[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  9[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  4[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT]
[FONT=Courier New][SIZE=10px][COLOR=#000000][B]DN(5) [/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  4[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  5[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  5[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000] 15[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  5[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT]
[FONT=Courier New][SIZE=10px][COLOR=#000000][B]DN(6) [/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000] 14[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  4[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  5[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  5[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  8[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  4[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  4[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT]
[FONT=Courier New][SIZE=10px][COLOR=#000000][B]DN(7) [/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  5[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  9[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  6[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  7[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000] 11[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  5[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  5[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  4[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000] 11[/COLOR][/SIZE][/FONT]
[FONT=Courier New][SIZE=10px][COLOR=#000000][B]DN(8) [/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  8[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  4[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  7[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT]

Potrebbe essere ... cosi?

Hai qualche dato reale al 14/07/2018 ?

:)
 
Ultima modifica:

Alien.

Advanced Premium Member
perfetto.....visto che la stringa è di 6 numeri facciamo che siano i 6 numeri del superenalotto poi vedere cosa succede giocanto i numeri usciti al superenalotto al lotto ? che se pò fa ? hhahhahaha ciao con id mese ?
 

genios

Advanced Member >PLATINUM<
Joe è cosi . Il dato reale quello della decina 1 NZ è esatto . Vediamo se questa decina da 2 ambi nelle prossime 9 estrazioni . E comunque accontentiamoci pure di uno . :)

101101000100010001000 .

Ciao Eugenio
 

joe

Advanced Member >PLATINUM PLUS<
i legend;n2123680 ha scritto:
Ciao, a me i cicli sono tutti inferiori di 1 punto.
Ciao a tutti :)

"Tutti" è un buon segno.

Cioè sottintende, solo, una differenza nel modo di conteggiare.

Bene anche per il riscontro (di quella specie di codice binario)

che Genios ha fornito.

:) Buona serata a tutte/i.
 

genios

Advanced Member >PLATINUM<
Joe si ma lo script ? :D

Ilegend in effetti i cicli di ritardo rispetto all' out pubblicato da Joe sono inferiori di 1 .Come dalla specie di codice binario del mio post .

Ciao Eugenio
 

genios

Advanced Member >PLATINUM<
Joe dato che non ho lo script sai dirmi come hai conteggiato all' interno del ciclo di 9 estrazioni l' uscita del terno quaterna o cinquina ?

Ciao Eugenio
 

joe

Advanced Member >PLATINUM PLUS<
Ciao Eu_

Anch'io ...

... in riva al mare, non ho lo script.

ma se ricordo bene non ho seguito

lo schema che avevi proposto.

quindi come terni quaterne e cinquine

non li ho calcolati.

:)
 

genios

Advanced Member >PLATINUM<
Appisolato al mar di Roma sognavo lo script e riflettevo se Joe avesse inserito la condizione IF frequenze in 9 estrazioni( considerando anche i terni quaterne e cinquine > 2 then .
:)

Ciao Eugenio
 

joe

Advanced Member >PLATINUM PLUS<
Non sono cose ...di per sé incompatibili

ma il grosso del problema

riguarda il come hai immaginato questa ricerca.

Per questa ragione sono in grado di produrre

2 tabelle (di risultati) simili ma diverse.

:)
 
Ultima modifica:

genios

Advanced Member >PLATINUM<
3 ruote.JPG
come puoi vedere dalla foto ruote di BA CA FI :

decina 81 90 . Su BA la presenza di 4 ambi ( 3 ambi formati dal terno e 1 ambo singolo quindi presenze di 4 ambi ) avrebbe azzerato il ritardo per cicli di 9 estrazioni con la presenza di almeno 2 ambi .

decina 81 90 . Su CA la presenza di 1 ambo avrebbe incrementato il ritardo per cicli di 9 estrazioni della presenza di almeno 2 ambi

Su FI la presenza di 3 ambi ( 3 ambi formati dal solo terno uscito in 9 estrazioni del ciclo considerato ) avrebbe azzerato il ritardo per cicli di 9 estrazioni con la presenza di almeno 2 ambi .

If ( nelle 9 estrazioni del ciclo gli ambi sono < 2then ( incrementa il ritardo ) else ( azzera il ritardo )
.

Joe Allora produci . :)

Ciao Eugenio
 

joe

Advanced Member >PLATINUM PLUS<
Ciao Eugenio.

No perché i risultati ottenuti ...

non mi convincono.

In ogni caso, non pubblicherò quello script,

proprio perché secondo me non funziona ...

anche se mi dite giusti i suoi risultati.

:)
 
Ultima modifica:

joe

Advanced Member >PLATINUM PLUS<
Per riferimento ... a quanto accennavo.

Codice:
[FONT=Courier New][SIZE=10px][COLOR=#000000][B]DN [/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000][B]  BA  [/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000][B]  CA  [/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000][B]  FI  [/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000][B]  GE  [/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000][B]  MI  [/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000][B]  NA  [/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000][B]  PA  [/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000][B]  RO  [/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000][B]  TO  [/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000][B]  VE  [/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000][B]  NZ  [/B][/COLOR][/SIZE][/FONT]
[FONT=Courier New][SIZE=10px][COLOR=#000000][B]1[/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 32[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  8[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  4[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#ff0000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  4[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 11[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#ff0000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 12[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 29[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  7[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  5[/COLOR][/SIZE][/FONT]
[FONT=Courier New][SIZE=10px][COLOR=#000000][B]2[/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 11[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 14[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 14[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 27[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  6[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  7[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  4[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 11[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  7[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  5[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 11[/COLOR][/SIZE][/FONT]
[FONT=Courier New][SIZE=10px][COLOR=#000000][B]3[/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  4[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  6[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 11[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#ff0000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 23[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  6[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 14[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 35[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  4[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 24[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 28[/COLOR][/SIZE][/FONT]
[FONT=Courier New][SIZE=10px][COLOR=#000000][B]4[/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  6[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  4[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 20[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#ff0000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  5[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 12[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#ff0000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 16[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  6[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 11[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 27[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  4[/COLOR][/SIZE][/FONT]
[FONT=Courier New][SIZE=10px][COLOR=#000000][B]5[/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 11[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 14[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  7[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  4[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 20[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 12[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  8[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 11[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#ff0000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  0[/COLOR][/SIZE][/FONT]
[FONT=Courier New][SIZE=10px][COLOR=#000000][B]6[/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  9[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 32[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  4[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 44[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 13[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 28[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  4[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  8[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 13[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 12[/COLOR][/SIZE][/FONT]
[FONT=Courier New][SIZE=10px][COLOR=#000000][B]7[/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 15[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  5[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 26[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#ff0000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  5[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  5[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#ff0000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#ff0000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  8[/COLOR][/SIZE][/FONT]
[FONT=Courier New][SIZE=10px][COLOR=#000000][B]8[/B][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#ff0000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 16[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  8[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 32[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#ff0000]  3[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff] 24[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  2[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#ff0000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  1[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#000000]  0[/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=10px][COLOR=#0000ff]  6[/COLOR][/SIZE][/FONT]
 
Ultima modifica:

genios

Advanced Member >PLATINUM<
Joe 8*10=80

9*10=90

90-80 = 10

mancano 10 numeri . :)

I conti non tornano

le cosi dette decina naturali sono :

decina naturale 0 numeri 1-2-3-4-5-6-7-8-9-10
decina naturale 1 numeri 11-12-13-14-15-16-17-18-19-20

omissis

decina naturale 8 numeri 81-82-83-84-85-86-87-88-89-90

Occorre anche sapere l' ultima estrazione presa in considerazione .
Nella tua tabella precedente l' ultima estrazione da te considerata era quella del 14 07 2018 .
Se si cambia estrazione i risultati in out possono essere diversi .


Ciao Eugenio
 
Ultima modifica:

Ultima estrazione Lotto

  • Estrazione del lotto
    martedì 16 aprile 2024
    Bari
    49
    10
    76
    62
    26
    Cagliari
    42
    80
    16
    39
    65
    Firenze
    58
    22
    11
    86
    40
    Genova
    79
    14
    36
    51
    44
    Milano
    25
    27
    16
    77
    79
    Napoli
    70
    04
    51
    49
    71
    Palermo
    61
    65
    76
    53
    43
    Roma
    70
    86
    68
    80
    47
    Torino
    17
    71
    64
    72
    40
    Venezia
    22
    42
    39
    72
    30
    Nazionale
    83
    37
    81
    57
    78
    Estrazione Simbolotto
    Genova
    10
    14
    28
    18
    15
Alto