Horje
Ruby | Numeric to_int() function

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 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 program for to_int()
# method in Numeric
  
# Initialize a number 
num1 = -19.86
  
# Prints the integer part
puts num1.to_int()

Output:

-19



Reffered: https://www.geeksforgeeks.org


Ruby

Related
Ruby | Rational fdiv() function Ruby | Rational fdiv() function
Ruby | Numeric to_c() function Ruby | Numeric to_c() function
Ruby | Rational denominator() function Ruby | Rational denominator() function
Ruby | Rational ceil() function Ruby | Rational ceil() function
Ruby | Numeric round() function Ruby | Numeric round() function

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