September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
11
Task/Loops-Foreach/BASIC/loops-foreach-3.basic
Normal file
11
Task/Loops-Foreach/BASIC/loops-foreach-3.basic
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
10 DIM A$(9) :REM DECLARE STRING ARRAY
|
||||
20 REM *** FILL ARRAY WITH WORDS ***
|
||||
30 FOR I = 0 TO 8
|
||||
40 READ A$(I)
|
||||
50 NEXT
|
||||
60 REM *** PRINT ARRAY CONTENTS ***
|
||||
70 FOR I = 0 TO 8
|
||||
80 PRINT A$(I)" ";
|
||||
90 NEXT
|
||||
100 END
|
||||
1000 DATA THE, QUICK, BROWN, FOX, JUMPS, OVER, THE, LAZY, DOG.
|
||||
Loading…
Add table
Add a link
Reference in a new issue