C++ Program for Complex Operations using Operator Overloading

By | 01.01.2017

Complex Operations using Operator Overloading


Write a C++ Program for Complex Operations using Operator Overloading. Here’s a Simple C++ Program for Complex Operations using Operator Overloading in C++ Programming Language.


What is Overloading in C++ ?


C++ allows you to specify more than one definition for a function name or an operator in the same scope, which is called function overloading and operator overloading respectively.


Function overloading : :

You can have multiple definitions for the same function name in the same scope. The definition of the function must differ from each other by the types and/or the number of arguments in the argument list. You can not overload function declarations that differ only by return type.


Operators overloading : :

You can redefine or overload most of the built-in operators available in C++. Thus a programmer can use operators with user-defined types as well.

Overloaded operators are functions with special names the keyword operator followed by the symbol for the operator being defined. Like any other function, an overloaded operator has a return type and a parameter list.


Below is the source code for C++ Program for Complex Operations using Operator Overloading which is successfully compiled and run on Windows System to produce desired output as shown below :


SOURCE CODE : :


/* C++ Program for Complex Operations using Operator Overloading  */

#include<iostream>
#include<string>
using namespace std;
struct complex
{
float real;
float imag;
};
complex operator + (complex a,complex b);
complex operator - (complex a,complex b);
complex operator * (complex a,complex b);
complex operator / (complex a,complex b);

int main()
{
complex a,b,c;
int ch;
void menu(void);
cout<<"\nEnter the first complex no :: ";
cin>>a.real>>a.imag;
cout<<"\nEnter the second complex no :: ";
cin>>b.real>>b.imag;
menu();
while ((ch = getchar()) != 'q')
{
switch(ch)
{
case 'a':c =a + b;
cout<<"\nAddition of 2 no’s :: ";
cout<<c.real<<"+i"<<c.imag;
break;
case 's':c=a-b;
cout<<"\nSubstraction of 2 no’s :: ";
cout<<c.real<<"i"<<c.imag;
break;
case 'm':c=a*b;
cout<<"\nMultiplication of 2 no’s :: ";
cout<<c.real<<"i"<<c.imag;
break;
                                case 'd':c=a/b;
cout<<"\nDivision of 2 no’s :: ";
cout<<c.real<<"i"<<c.imag;
break;
                        }
                }
        }
void menu()
{
cout<<"\ncomplex no: operators";
cout<<"\na->addition";
cout<<"\ns->substraction";
cout<<"\nm->multiplication";
cout<<"\nd->division";
cout<<"\nq->quit";
cout<<"\n\noptions please :: ";
}
complex operator -(struct complex a, struct complex b)
{
complex c;
c.real=a.real-b.real;
c.imag=a.imag-b.imag;
return(c);
}
complex operator *(struct complex a, struct complex b)
{
complex c;
c.real=((a.real*b.real)-(a.imag*b.imag));
c.imag=((a.real*b.imag)+(a.imag*b.real));
return(c);
}
complex operator +(struct complex a,struct complex b)
{
complex c;
c.real=a.real+b.real;
c.imag=a.imag+b.imag;
return(c);
}
complex operator /(struct complex a, struct complex b)
{
complex c;
float temp;
temp=((b.real*b.real)+(b.imag*b.imag));
c.real=((a.real*b.real)+(a.imag*b.imag))/temp;
                 return(c);
}

OUTPUT : :


/* C++ Program for Complex Operations using Operator Overloading  */

Enter the first complex no :: 2 3

Enter the second complex no :: 4 5

complex no: operators
a->addition
s->substraction
m->multiplication
d->division
q->quit

options please :: a

Addition of 2 noÆs :: 6+i8
s

Substraction of 2 noÆs :: -2i-2
m

Multiplication of 2 noÆs :: -7i22
d

Division of 2 noÆs :: 0.560976i0
q

Process returned 0

Above is the source code and output for C++ Program for Complex Operations using Operator Overloading which is successfully compiled and run on Windows System to produce desired output.

If you found any error or any queries related to the above program or any questions or reviews , you wanna to ask from us ,you may Contact Us through our contact Page or you can also comment below in the comment section.We will try our best to reach upto you in the short interval.


Thanks for reading the post….

5 2 votes
Article Rating
Category: C++ Programming Overloading Programs Tags:

About Tunde A

My name is Tunde Ajetomobi, a Tech Enthusiast and Growth Hacker. I enjoy creating helpful content that solves problem across different topics. Codezclub is my way of helping young aspiring programmers and students to hone their skills and find solutions on fundamental programming languages.

Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments