Home »
Ruby Tutorial »
Ruby Programs
Ruby program to print the absolute value of Complex numbers
Last Updated : December 15, 2025
Problem Solution
In this program, we will create variables for complex numbers and print the absolute value of complex numbers using the abs() function.
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 num1, num2, num3 initialized with complex numbers. Then we printed the absolute value of all created complex numbers using the abs() function.
Ruby Basic Programs »
Advertisement
Advertisement