Poligono regolare
Week 8: Graphical Write a program that will draw a regular polygon for any given number of sides. For example if the user enters 5 then the… Leggi tutto »Poligono regolare
Week 8: Graphical Write a program that will draw a regular polygon for any given number of sides. For example if the user enters 5 then the… Leggi tutto »Poligono regolare
La libreria Clock fornisce accesso, soltanto in lettura, all’orologio di sistema. Strumento Argomenti Risultato Descrizione Date “data” Data Day numero Giorno del mese ElapsedMilliseconds numero Numero di… Leggi tutto »Clock
Week 8: Text Write a program that allows the user to enter a sentence which the computer will then spell check. Hint: Use the Dictionary… Leggi tutto »Controllo ortografia 1
2012-07: Easy Math calculation Apple’s weight is 300 g. orange’s weight is 200 g. You measured the weight of the apples and oranges by analogue… Leggi tutto »Bilancia
Disegna una linea a ogni clic del mouse. GraphicsWindow.MouseDown=TiraLinea Turtle.Speed=8 Turtle.Show() Sub TiraLinea x=GraphicsWindow.MouseX y=GraphicsWindow.MouseY Turtle.MoveTo(x, y) EndSub