Aşağıdaki Örneği inceleyelim.
sayi = 200 While (sayi > 1) TextWindow.WriteLine(sayi) sayi = sayi / 2 EndWhile |
sayi = 200 While (sayi > 1) TextWindow.WriteLine(sayi) sayi = sayi / 2 EndWhile |
For i = 1 To 10 TextWindow.WriteLine(i) EndFor |
basla: TextWindow.Write("Bir sayı girin: ") sayi = TextWindow.ReadNumber() kalan = Math.Remainder(sayi, 2) If (kalan = 0) Then TextWindow.WriteLine("Sayı Çift Sayı") Else TextWindow.WriteLine("Sayı Tek Sayı") EndIf Goto basla |
i = 1 start: TextWindow.WriteLine(i) i = i + 1 If (i < 10) Then Goto start EndIf |