Lanciare i dadi
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
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
Challenge 2012-04 – Challenge 2 Use a While loop to find the first triangular number with 4 digits. A triangular number is the sum of all… Leggi tutto »Raggiungere la meta
2016-03: Text 3 Write a program to write out the times tables to the TextWindow. Use colour and positionng to tabulate the numbers to make the display… Leggi tutto »Tavola pitagorica
Scrivi un programma per la finestra di testo che chiede all’utente una larghezza e un’altezza e dopo disegna un rettangolo vuoto con queste dimensioni utilizzando asterischi. Osserva… Leggi tutto »Rettangolo di asterischi
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