Open In App

Ruby | Numeric to_int() function

Last Updated : 19 Mar, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report
The to_int() is an inbuilt method in Ruby returns the integer part of the given number.
Syntax: num.to_int() Parameters: The function needs the number whose integer part is to be returned. Return Value: It returns the integer part.
Example 1: Ruby
# Ruby program for to_int()
# method in Numeric

# Initialize a number 
num1 = 15.778

# Prints the integer part
puts num1.to_int()
Output:
15
Example 2: Ruby
# Ruby program for to_int()
# method in Numeric

# Initialize a number 
num1 = -19.86

# Prints the integer part
puts num1.to_int()
Output:
-19

Next Article

Similar Reads