Vai al contenuto

TextWindow

Radice cubica

  • Senza categoria

2012-06: Maths Write a program to accurately calculate the cube root of an input number (between 1 and 1000) without using any of the Math methods. Scrivi un… Leggi tutto »Radice cubica

Numeri primi

  • Senza categoria

TextWindow.Write(“Enter a number: “) i = TextWindow.ReadNumber() isPrime = “True” PrimeCheck() If (isPrime = “True”) Then     TextWindow.WriteLine(i + ” is a prime number”) Else     TextWindow.WriteLine(i + “… Leggi tutto »Numeri primi

Codice errato

  • Senza categoria

2011-12: Intermediate Import the following code sample (XMW920), there are a number of errors – fix these. Most of the errors prevent the sample compiling… Leggi tutto »Codice errato

Secondi

Tramite la libreria Timer è possibile ripetere 4 volte al secondo la visualizzazione dei secondi attuali. Timer.Interval=250 Timer.Tick =VISUALIZZA1 Sub VISUALIZZA1   TextWindow.Write(Clock.Second + ” “) EndSub Potrebbe essere utile… Leggi tutto »Secondi