Q:

Ruby program to calculate the cube root of the given number

belongs to collection: Ruby Basic Programs

0

In this program, we will read a floating-point number from the user using gets.chomp.to_f. Then we will calculate the cube root of the number using the Math.cbrt() 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 calculate the cube root of the given number is given below. The given program is compiled and executed successfully.

# Ruby program to calculate the 
# cube root of the given number

print "Enter Number: ";
num = gets.chomp.to_f;  

CubeRoot = Math.cbrt(num);

print "Cube Root is: ",CubeRoot;

Output:

Enter Number: 27
Cube Root is: 3.0

Explanation:

In the above program, we read a floating-point number from the user using gets.chomp.to_f and calculated the cube root of the input number using Math.cbrt() function 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 calculate the base 2 logarithm of ... >>
<< Ruby program to calculate the square root of the g...