Radice cubica
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
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
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
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
2012-01: File and Text Write a program to read an entire text file into a Small Basic variable.You need to create a sample text file… Leggi tutto »File di testo
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