📜  红宝石 |数字 divmod()函数

📅  最后修改于: 2022-05-13 01:54:49.032000             🧑  作者: Mango

红宝石 |数字 divmod()函数

divmod()是 Ruby 中的一个内置方法,在执行除法后返回整数商和模数。

示例 1

#Ruby program for divmod() method in Matrix
  
#Initialize a number
num1 = 15
  
#Prints quotient and modulus of num1 / 4
puts num1.divmod(4)

输出

3
3

示例 2

#Ruby program for divmod() method in Matrix
  
#Initialize a number
num1 = 20
  
#Prints quotient and modulus of num1 / 2
puts num1.divmod(2)

输出

10
0