Home »
Ruby »
Ruby Programs
Ruby program to get the imaginary part of the given complex number
Ruby Example: Write a program to get the imaginary part of the given complex number.
Submitted by Nidhi, on December 11, 2021
Problem Solution:
In this program, we will create variables for complex numbers and find the imaginary part of given complex numbers using the imaginary() function.
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 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.
Ruby Basic Programs »