RosettaCodeData/Task/Create-a-two-dimensional-array-at-runtime/Yabasic/create-a-two-dimensional-array-at-runtime.basic
2023-07-01 13:44:08 -04:00

6 lines
164 B
Text

input "Enter one positive integer: " i
input "Enter other positive integer: " j
dim a(i, j)
a(i, j) = i * j
print "a(", str$(i), ",", str$(j), ") = ", a(i, j)
exit