Data update
This commit is contained in:
parent
0df55f9f24
commit
aec8ed51b6
1045 changed files with 18889 additions and 2777 deletions
|
|
@ -0,0 +1,14 @@
|
|||
PROGRAM "Create a two-dimensional array at runtime"
|
||||
VERSION "0.0001"
|
||||
|
||||
DECLARE FUNCTION Entry ()
|
||||
|
||||
FUNCTION Entry ()
|
||||
i$ = INLINE$("Enter one positive integer: ")
|
||||
j$ = INLINE$("Enter other positive integer: ")
|
||||
i = SSHORT(i$)
|
||||
j = SSHORT(j$)
|
||||
DIM a[i, j]
|
||||
a[i, j] = i * j
|
||||
PRINT "a("; STRING(i); ", "; STRING(j); ") ="; a[i, j]
|
||||
END FUNCTION
|
||||
Loading…
Add table
Add a link
Reference in a new issue