Q:

Ruby program to find the absolute value of the given number

belongs to collection: Ruby Basic Programs

0

In this program, we will read a number from the user and find its absolute value using the abs() function.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to find the absolute value of the given number is given below. The given program is compiled and executed successfully.

# Ruby program to find the 
# absolute value of the given number

print "Enter number: ";
num = gets.chomp.to_i;  

result = num.abs();  

print "Absolute value: ",result;

Output:

Enter number: -234
Absolute value: 234

Explanation:

In the above program, we read a number from the user using gets.chomp.to_i. Then we found the absolute value of a given number using the abs() function and printed the result.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Ruby Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Ruby program to check the given number is an integ... >>
<< Ruby program to convert a number into a rational n...