Q:

Ruby program to get the magnitude of the given number

belongs to collection: Ruby Basic Programs

0

In this program, we will create three variables and initialize them with some values. Then we will get the magnitude of the number using library function magnitude().

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 get the magnitude of the given number is given below. The given program is compiled and executed successfully.

# Ruby program to get the magnitude 
# of the given number

num1 = Complex(2,3);
num2 = -15;
num3 = 3.14;

print num1.magnitude(),"\n";
print num2.magnitude(),"\n";
print num3.magnitude(),"\n";

Output:

3.605551275463989
15
3.14

Explanation:

In the above program, we created three variables num1num2num3 and initialized them with some values. Then we got the magnitude of given numbers using the magnitude() library 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 get the remainder of float numbers... >>
<< Ruby program to demonstrate the abs2() function...