Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,7 @@
|
|||
10 LET X = 4:Y = 5
|
||||
20 DIM A(X - 1),B(Y - 1),C(X + Y - 1)
|
||||
30 FOR I = 1 TO X:A(I - 1) = I: NEXT
|
||||
40 FOR I = 1 TO Y:B(I - 1) = I * 10: NEXT
|
||||
50 FOR I = 1 TO X:C(I - 1) = A(I - 1): NEXT
|
||||
60 FOR I = 1 TO Y:C(X + I - 1) = B(I - 1): NEXT
|
||||
70 FOR I = 1 TO X + Y: PRINT MID$ (" ",1,I > 1)C(I - 1);: NEXT
|
||||
Loading…
Add table
Add a link
Reference in a new issue