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


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


Ruby中的divmod()函數返回整數除法值和餘數。

用法:(number1).divmod(number2)

參數:該函數采用兩個數字number1和number2,它們返回整數除法和餘數。


返回值:該函數返回整數除法值和餘數。

範例1:

# Ruby program of Integer divmod() function 
  
# Initializing the numbers  
num1 = 15
num2 = 4
   
num3 = 10
num4 = 2
   
# Prints the integer divison  
# and its remainder  
puts num1.divmod(num2) 
puts 
puts num3.divmod(num4)

輸出

3
3

5
0

範例2:

# Ruby program of Integer divmod() function 
  
# Initializing the numbers  
num1 = 19
num2 = 2
   
num3 = 28
num4 = 13
   
# Prints the integer divison  
# and its remainder  
puts num1.divmod(num2) 
puts 
puts num3.divmod(num4)

輸出

9
1

2
2


相關用法


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