5 lines
97 B
Text
5 lines
97 B
Text
CONST n = 13
|
|
FOR x = 1 TO n
|
|
result$ = APPEND$(result$, 0, STR$(x))
|
|
NEXT
|
|
PRINT SORT$(result$)
|