Loops/While: Difference between revisions

Content added Content deleted
Line 1,224: Line 1,224:


=={{header|Microsoft Small Basic}}==
=={{header|Microsoft Small Basic}}==
<lang microsoftsmallbasic>
i = 1024
While i > 0
TextWindow.WriteLine(i)
i = Math.Floor(i / 2)
EndWhile
</lang>


=={{header|МК-61/52}}==
=={{header|МК-61/52}}==