Ruby program to print the absolute value of Complex numbers

Ruby Example: Write a program to print the absolute value of Complex numbers.
Submitted by Nidhi, on December 11, 2021

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 »





Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.