当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby Integer downto()用法及代码示例


Ruby中的downto()函数返回所有小于等于number且大于等于limit的数字。迭代给定的块,将递减的值从int传递到limit(包括下限值)。如果没有给出块,则返回一个Enumerator。

用法:(number).downto(limit)

参数:该函数采用整数,数字从该整数开始减小。它采用一个参数,该参数是直到发生下降的极限。它也需要一个枚举器。


返回值:该函数返回所有小于等于number且大于等于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)

输出

#


相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby Integer downto() function with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。