Q:

Ruby program to print the absolute value of Complex numbers

belongs to collection: Ruby Basic Programs

0

In this program, we will create variables for complex numbers and print the absolute value of complex numbers 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 print the absolute value of Complex numbers is given below. The given program is compiled and executed successfully.

# Ruby program to print the 
# absolute value of Complex numbers

num1 = Complex(200);
num2 = Complex(-1, 4);
num3 = Complex('i');

print "Num1: "  ,num1.abs();
print "\nNum2: ",num2.abs();
print "\nNum3: ",num3.abs();

Output:

Num1: 200
Num2: 4.123105625617661
Num3: 1

Explanation:

In the above program, we created three variable num1num2num3 initialized with complex numbers. Then we printed the absolute value of all created complex numbers using the abs() function.

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 imaginary part of the give... >>
<< Ruby program to check the given number is an integ...