Open In App

Ruby | Numeric abs2() function

Last Updated : 19 Mar, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

The abs2() is an inbuilt method in Ruby returns the square of a number. 

Syntax: num.abs2

Parameters: The function needs the number whose square is to be returned. 

Return Value: It returns the square of a number.

Example 1:  

Ruby




# Ruby program for abs2() method in Numeric
  
# Initialize a number 
num = -19 
  
# Prints square of num
puts  num.abs2() 


Output

361

Example 2

Ruby




# Ruby program for abs2() method in Numeric
  
# Initialize a number 
num = 100 
  
# Prints square of num
puts  num.abs2() 


Output

10000

 


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

Similar Reads