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.
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.
Output:
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