how to stop printing

qwerty 1 Reputation point
2021-03-04T19:08:26.583+00:00

hi guys i am pretty new here and there is little assignment needed your help. program must print palindrome numbers butween 100 to 999 start : For i = 100 To 999 A = Math.Remainder(i,10) B = i/100 c = Math.Floor(B) If A = c Then TextWindow.WriteLine(i) EndIf EndFor Goto start but it just continously repeating

Small BASIC
Small BASIC
A programming language created by Microsoft that serves a stepping stone for beginners from block-based coding languages to more complex text-based languages.
277 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. WhTurner 1,611 Reputation points
    2021-03-05T11:01:38.703+00:00

    Just renove the Goto start

    1 person found this answer helpful.
    0 comments No comments