我需要一些幫助,下面:發送數字並返回一個數組中的Ruby
- 的方法創建一個基於輸入參數
- 返回來自該方法數組的新陣列
- 輸出數組的內容最優雅?
mycontroller.rb
def test(num)
#take the number and create a new array and return the array with the numbers.
#example input: 5
#output: array with 5 indexes and values of [1,2,3,4,5]
end
# output the contents of the array
i = 0
while i < 5
puts test(i)
end
謝謝!
如果這不是問題,那麼你需要回到小學去找出「問題」的定義是什麼。這不是功課。我正在學習Ruby,需要幫助理解它。 – EverTheLearner 2011-12-20 23:56:37
然後問一個問題。你有三個不相關的需求列表,這並不構成問題,Stack Overflow絕對不會爲你編寫代碼。 – meagar 2011-12-21 00:00:09