September Morn Update
This commit is contained in:
parent
4e2d22a71d
commit
aac6731f2c
6856 changed files with 141342 additions and 21127 deletions
6
Task/Reverse-a-string/BASIC/reverse-a-string-3.basic
Normal file
6
Task/Reverse-a-string/BASIC/reverse-a-string-3.basic
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
10 INPUT S$
|
||||
20 LET T$=""
|
||||
30 FOR I=LEN S$ TO 1 STEP -1
|
||||
40 LET T$=T$+S$(I)
|
||||
50 NEXT I
|
||||
60 PRINT T$
|
||||
Loading…
Add table
Add a link
Reference in a new issue