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.
Per Solare : somma isotopa (Cinzia27)- simulazione giocate
Sub Main()
Dim ru(2),n(2),ps(2)
dr=10' durata
ps(1)=0.85' spesa per ambata
ps(2)=0.15' spesa per ambo
q=20' Ultime 100 estrazioni - cambia 100 se vuoi una quantità diversa
In=1 ' sorte interruzione - 1 ambata/2 ambo
w=CInt(InputBox(" Inserisci la somma che vorresti",,90))
If w="" Then Exit Sub
For es=EstrazioneFin-q To EstrazioneFin
c=0
For r=1 To 10
For r1=r+1 To 11
If r1=11 Then r1=12
ru(1)=r
ru(2)=r1
For p=1 To 5
a=Estratto(es,r,p)
b=Estratto(es,r1,p)
s=Fuori90(a+b)
If s=w Then
c=c+1
n(1)=a
n(2)=b
Scrivi FormatSpace(c,4,1)&") "&DataEstrazione(es)&" "&FormatSpace(es,4,1)&" "&SiglaRuota(r)&" "&Format2(a)&" "&SiglaRuota(r1)_
&" "&Format2(b)&" somma "&FormatSpace(s,4,1)
ImpostaGiocata 1,n,ru,ps,dr,1
Gioca es
End If
Next
Next
Next
If c>0 Then Scrivi " "&String(41,"*")
Next
ScriviResoconto
End Sub
Anche se sono poche previsioni ,,,il mio desiderio e quello di indovinare un ambo nelle due ruote con i fissi 45 o 90
' Per Solare : somma isotopa (Cinzia27)- simulazione giocate
Sub Main()
Dim ru(2),n(2),n1(2),n2(2),n3(2),ps(2)
dr=10' durata
'ps(1)=0.85' spesa per ambata ' togli apice se vuoi anche ambata
ps(2)=1' spesa per ambo
q=1000' Ultime 100 estrazioni - cambia 100 se vuoi una quantità diversa
It=2 ' sorte interruzione - 1 ambata/2 ambo
w=CInt(InputBox(" Inserisci la somma che vorresti",,90))
If w="" Then Exit Sub
For es=EstrazioneFin-q To EstrazioneFin
c=0
For r=1 To 10
For r1=r+1 To 11
If r1=11 Then r1=12
ru(1)=r
ru(2)=r1
For p=1 To 5
a=Estratto(es,r,p)
If a>0 Then
b=Estratto(es,r1,p)
s=Fuori90(a+b)
If s=w Then
c=c+1
n(1)=a
n(2)=45
n1(1)=a
n1(2)=90
n2(1)=b
n2(2)=45
n3(1)=b
n3(2)=90
Scrivi FormatSpace(c,4,1)&") "&DataEstrazione(es)&" "&FormatSpace(es,4,1)&" "&SiglaRuota(r)&" "&Format2(a)&" "&SiglaRuota(r1)_
&" "&Format2(b)&" somma "&FormatSpace(s,4,1)
Scrivi " Numeri in gioco "&stringanumeri(n)&" "&stringanumeri(n1)&" "&stringanumeri(n2)&" "&stringanumeri(n3)
ImpostaGiocata 1,n,ru,ps,dr,it
ImpostaGiocata 2,n1,ru,ps,dr,it
ImpostaGiocata 3,n2,ru,ps,dr,it
ImpostaGiocata 4,n3,ru,ps,dr,it
For i=1 To 3
For j=2 To 4
ImpostaInterruzioni i,j,2
ImpostaInterruzioni j,i,2
Next
Next
Gioca es
End If
End If
Next
Next
Next
If c>0 Then Scrivi " "&String(41,"*")
Next
ScriviResoconto
End Sub