Ruby中的二维数组

时间:2013-03-20 17:48:16

标签: ruby-on-rails ruby input

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

1 个答案:

答案 0 :(得分:0)

使用

声明二维数组
tda = [[ 1, 2 ], [3, 4], [5, 6]]

或者您可以使用Matrix

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