Microsoft Small Basic

Program Listing: FQB567
TextWindow.WriteLine("Организация цикла")
FOR x = 2 TO 5 STEP .1
n = 5 * x - 8 * Math.Log(x) - 8
TextWindow.Write("при x= ")
TextWindow.Write (x)
TextWindow.Write(" n=")
TextWindow.Write(n)
TextWindow.Write(" ")
TextWindow.WriteLine ("")
EndFor