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 num1, num2, num3 initialized with complex numbers. Then we got the imaginary part of all complex numbers using the imaginary() function and printed the result.
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.
Output:
Explanation:
In the above program, we created three variables num1, num2, num3 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