Horje
Ruby | Numeric div() function

The div() is an inbuilt method in Ruby that returns the result after performing an integer division.

Syntax: num1.div(num2) Parameters: The function needs two numbers whose integer division is to be performed. Return Value: It returns returns the integer division.

Example 1:

CPP
#Ruby program for div() method in Matrix

#Initialize a number
num1 = 15

#Prints division of num1 / 4
puts num1.div(4)

Output:

3

Example 2:

CPP
#Ruby program for div() method in Matrix

#Initialize a number
num1 = 20

#Prints division of num1 / 2
puts num1.div(2)

Output:

10




Reffered: https://www.geeksforgeeks.org


Ruby

Related
Ruby | Numeric divmod() function Ruby | Numeric divmod() function
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

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