Horje
Ruby | Numeric divmod() function

The divmod() is an inbuilt method in Ruby returns the integer quotient and modulus after performing the division.

Syntax: num1.divmod(num2) Parameters: The function needs two numbers whose integer division is to be performed. Return Value: It returns returns the integer quotient and modulus after performing the division..

Example 1:

CPP
#Ruby program for divmod() method in Matrix

#Initialize a number
num1 = 15

#Prints quotient and modulus of num1 / 4
puts num1.divmod(4)

Output:

3
3

Example 2:

CPP
#Ruby program for divmod() method in Matrix

#Initialize a number
num1 = 20

#Prints quotient and modulus of num1 / 2
puts num1.divmod(2)

Output:

10
0




Reffered: https://www.geeksforgeeks.org


Ruby

Related
Ruby | Numeric eql?() function Ruby | Numeric eql?() function
Ruby | Time succ() function Ruby | Time succ() function
Ruby | Time subsec() function Ruby | Time subsec() function
Ruby | Time strftime() function Ruby | Time strftime() function
Ruby | Time thursday? function Ruby | Time thursday? function

Type:
Geek
Category:
Coding
Sub Category:
Tutorial
Uploaded by:
Admin
Views:
9