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


Ruby Integer upto()用法及代碼示例


Ruby中的times函數將所有數字從給定返回到數字本身。迭代給定的塊,將遞增的值從number1傳遞到number2。如果沒有給出塊,則返回一個Enumerator。

用法:(number1).upto(number2)

參數:該函數采用數字1和數字2,這是返回數字的範圍。它也需要一個街區。


返回值:該函數返回從number1到number2本身的所有數字。

例子1

#Ruby program for upto() function 
  
#Initializing the number 
num1 = 8 num2 = 12 
  
#Prints the number from num1 to num2 
                puts num1.upto(num2) 
{ 
    | i | print i, " "
} 
  
#Initializing the number 
num3 = 5 num4 = 15 
  
#Prints the number from num3 to num4 
                puts num3.upto(num4) 
{ 
    | i | print i, " "
}

輸出

8 9 10 11 12 8
5 6 7 8 9 10 11 12 13 14 15 5

例子2

#Ruby program for upto() function 
  
#Initializing the number 
num1 = 1 num2 = 3 
  
#Prints the number from num1 to num2 
                puts num1.upto(num2) 
{ 
    | i | print i, " "
} 
  
#Initializing the number 
num3 = -7 num4 = -2 
  
#Prints the number from num3 to num4 
                  puts num3.upto(num4) 
{ 
    | i | print i, " "
}

輸出

1 2 3 1
-7 -6 -5 -4 -3 -2 -7

例子3

#Ruby program for upto() function 
  
#Initializing the number 
num1 = 1 num2 = 3 
  
#Returns an enumerator 
#since no block is passed 
                puts num1.upto(num2)

輸出

#

參考:https://devdocs.io/ruby~2.5/integer#method-i-upto



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Integer upto() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。