刚开始学习编程,选择 Ruby 做入门。看了教程第 33 课的问题:http://lrthw.github.io/ex33/,加分项里说要做个函数出来,已经实现。但是有个问题,如何通过键盘输入值来作为函数的两个参数呢? 如下:就是 pushnmuh 函数,是用.gets.chomp() 吗?好像这样传入的是字符串,而且如何让他传入两个参数呢?请教。
def pushnum(args1,args2) i = 0 nubmers=[] while i< args1 puts "At the top i is #{i}" nubmers.push(i)
i = i+args2 puts "Numbers now: #{nubmers}" puts "At the bottom i is #{i}" end
puts "The numbers"
for num in nubmers puts num end
end puts "." pushnum(55,3)