Vai al contenuto

TextWindow

Lanciare i dadi

  • Senza categoria

Lancia un dado finché non ottiene un certo numero, per esempio 3 NUM =3    ‘ numero magico DADO=0 While(DADO NUM)   DADO=Math.GetRandomNumber(6)   TextWindow.Write(DADO +… Leggi tutto »Lanciare i dadi

Fattoriale

  • Senza categoria

Definizione Esempi N=0: 0!=1 N=1: 1!=1 N=2: 2!=2*1=2 … N=5: 5!=5*4*3*2*1=120 N=6: 6!=6*5*4*3*2*1=720 … Codifica RISP=1 For i=N To 1 Step -1 RISP=RISP*i EndFor oppure… RISP=1 For… Leggi tutto »Fattoriale