>>492
たとえば

dim ary[3][4][5]

for i=0 to 2
for j = 0 to 3
for k = 0 to 4
ary[i][j][k] = i + j + k
next
next
next