Challenge 2015-04
Small Challenges Write a TextWindow program to read in 2 times of the day (24 hour clock) and calculate the number of minutes between the… Leggi tutto »Challenge 2015-04
Small Challenges Write a TextWindow program to read in 2 times of the day (24 hour clock) and calculate the number of minutes between the… Leggi tutto »Challenge 2015-04
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
Con riferimento all’ambiente di sviluppo SMALLBASIC illustra l’uso dei commenti i comandi per interagire con l’utente la gestione dei colori modificare le caratteristiche della finestra… Leggi tutto »AUTOVERIFICA
Carico le 10 immagini e le animo in sequenza con il Timer per contare i decimi di secondo Aggiungo i pulsanti di Start e Stop… Leggi tutto »Animazioni
Text Challenges Write a program to CAPITALISE the first letter of each word in a sentence. Write a program the center some text in the… Leggi tutto »Challenge 2015-03