Open In App

Ruby | Numeric % method

Last Updated : 18 Jan, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

The % is an inbuilt method in Ruby returns the modular value when two numbers are divided. It returns the value of a % b. 

Syntax: a % b 

Parameters: The function needs two number whose modulus on division is returned.

Return Value: It returns the modulus when two numbers are divided.

Example 1:  

Ruby




# Ruby program for % method in Numeric
 
# Initialize two numbers
a = 19
b = 4
 
# Prints a%b
puts  a % b


Output

3

Example 2

Ruby




# Ruby program for % method in Numeric
 
# Initialize two numbers
a = 13
b = 2
 
# Prints a%b
puts  a % b


Output

1

 


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads