Q:

Ruby program to get the imaginary part of the given complex number

belongs to collection: Ruby Basic Programs

0

In this program, we will create variables for complex numbers and find the imaginary part of given complex numbers using the imaginary() 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 get the imaginary part of the given complex number is given below. The given program is compiled and executed successfully.

# Ruby program to get the imaginary part 
# of the given complex number

num1 = Complex(200,10);
num2 = Complex(-1, 4);
num3 = Complex(23,45);

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

Output:

Num1: 10
Num2: 4
Num3: 45

Explanation:

In the above program, we created three variables num1num2num3 initialized with complex numbers. Then we got the imaginary part of all complex numbers using the imaginary() 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 create Complex numbers from given ... >>
<< Ruby program to print the absolute value of Comple...