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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。