-2

如何在Ruby中输入一个二维数组?如何在Ruby中初始化和声明数组?

4

1 回答 1

0

您声明一个二维数组

tda = [[ 1, 2 ], [3, 4], [5, 6]]

或者你可以使用Matrix

http://www.ruby-doc.org/stdlib-1.9.3/libdoc/matrix/rdoc/Matrix.html

于 2013-03-20T17:49:31.240 回答