In this program, we will create two variables and initialize them with some values. Then we will use the abs2() function with created variables. The abs2() function returns the square of the given number.
The source code to demonstrate the abs2() function is given below. The given program is compiled and executed successfully.
# Ruby program to demonstrate
# the abs2() function
num1 = Complex(2,3);
num2 = -15;
print num1.abs2(),"\n";
print num2.abs2(),"\n";
Output:
13
225
Explanation:
In the above program, we created two variables num1, num2 and initialized them with some values. Then we used the abs2() function with both variables to get the square of numbers and printed the result.
Program/Source Code:
The source code to demonstrate the abs2() function is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we created two variables num1, num2 and initialized them with some values. Then we used the abs2() function with both variables to get the square of numbers and printed the result.
need an explanation for this answer? contact us directly to get an explanation for this answer