标签: ruby
以下是我的红宝石代码..
n
1..a [i]似乎有问题,为什么?
答案 0 :(得分:3)
gets.chomp返回一个字符串,但你需要一个整数来生成一个范围。
gets.chomp
只需将gets.chomp更改为:
a[t] = gets.to_i