當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。