我是 Ruby 新手,只是不知道如何从用户那里获取数组的输入并显示它。如果有人能清楚我可以添加我的逻辑来找到最大的数字。
#!/usr/bin/ruby
puts "Enter the size of the array"
n = gets.chomp.to_i
puts "enter the array elements"
variable1=Array.new(n)
for i in (0..n)
variable1[i]=gets.chomp.to_i
end
for i in (0..n)
puts variable1
end