Y
Hacker News
new
|
ask
|
show
|
jobs
by
n4r9
1891 days ago
Does BASIC allow padded string formatting? If so, you only need the one loop.
1 comments
szc
1891 days ago
No, but there are other tricks, such as prepending enough zeros and then taking the rightmost 4 characters from the string...
FOR I = 0 TO 9999 : A$ = RIGHT$("000"+STR$(I),4) : ... rest of the code : NEXT I
link
FOR I = 0 TO 9999 : A$ = RIGHT$("000"+STR$(I),4) : ... rest of the code : NEXT I