Open In App

Ruby | Complex + method

Last Updated : 13 Jul, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

Complex#+() : +() is a Complex class method which performs the addition operation. 
 

Syntax: Complex.+()
Parameter: Complex values
Return: Addition Operation on complex values.

Example #1 : 
 

Ruby




# Ruby code for Complex.+() method
 
# declaring Complex value
a = Complex(200)
 
# declaring Complex value
b = Complex(-1, 4)
 
# declaring Complex value
c = Complex('i')
 
 
# Addition
puts "Complex + form : #{a+b}\n\n"
 
puts "Complex + form : #{b+c}\n\n"
 
puts "Complex + form : #{c+a}\n\n"


Output : 
 

Complex + form : 199+4i

Complex + form : -1+5i

Complex + form : 200+1i

Example #2 :
 

Ruby




# Ruby code for Complex.+() method
 
# declaring Complex value
a = Complex(20, 90)
 
# declaring Complex value
b = Complex('i')
 
# declaring Complex value
c = Complex(100, -500)
 
 
# Addition
puts "Complex + form : #{a+b}\n\n"
 
puts "Complex + form : #{b+c}\n\n"
 
puts "Complex + form : #{c+a}\n\n"


Output : 
 

Complex + form : 20+91i

Complex + form : 100-499i

Complex + form : 120-410i

 


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads