4 lines
90 B
Text
4 lines
90 B
Text
|
|
m = bigMatrix 5 4
|
||
|
|
for i in 1 to 5 do for j in 1 to 4 do m[i][j] = pow i j
|
||
|
|
m = transpose m
|