Open In App

Ruby | Numeric divmod() function

Last Updated : 19 Mar, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

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:

Output:

3
3

Example 2:

Output:

10
0


Next Article

Similar Reads