Q:

Ruby program to find the absolute value of the given number

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)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now