Ruby 整数 downto()函数及示例
Ruby中的 downto() 函数返回所有小于等于number且大于等于limit的数字。它对给定的块进行迭代,传入从int到limit(包括limit)的递减值。如果没有给定块,则会返回一个枚举器。
语法 :(number).downto(limit)
参数 :该函数接收整数,数字从该整数开始递减。它需要一个参数,即发生递减的极限。它还接受一个枚举器。
返回值 :该函数返回所有小于等于数字和大于等于极限的数字。
例子 #1 :
# Initializing the number
num1 = 8
# Prints the number down to 0
puts num1.downto(0){| i | print i, " "}
# Initializing the number
num2 = -8
# Prints the number down to - 8 only since - 6 > -8
puts num2.downto(-6){| i | print i, " "}
输出:
8 7 6 5 4 3 2 1 0 8
-8
例子#2 。
# Ruby program of Integer downto() function
# Initializing the number
num1 = 5
# Prints the number down to - 3
puts num1.downto(-3){| i | print i, " "}
# Initializing the number
num2 = 19
# Prints the number down to 17
puts num2.downto(17){| i | print i, " "}
输出:
5 4 3 2 1 0 -1 -2 -3 5
19 18 17 19
例子#3 。
# Initializing the number
num1 = 5
# Prints the number down to - 3
puts num1.downto(-3)
输出:
#