-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomplex-class.cpp
59 lines (54 loc) · 1.05 KB
/
complex-class.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include<iostream>
using namespace std;
class COMPLEX
{
private: int real; //they are locally global
int img;
public:
/*fn.prototypes*/void initialize();
void add(COMPLEX,COMPLEX);
void subtract(COMPLEX,COMPLEX);
void display();
};
void COMPLEX::initialize() // :: is scope resolution operator
{
cout<<"Enter the real part: ";
cin>>real;
cout<<"Enter the imaginary part: ";
cin>>img;
}
void COMPLEX::add(COMPLEX c1,COMPLEX c2)
{
real = c1.real + c2.real;
img = c1.img + c2.img;
return;
}
void COMPLEX::subtract(COMPLEX c1,COMPLEX c2)
{
real = c1.real - c2.real;
img = c1.img - c2.img;
return;
}
void COMPLEX::display()
{
if(img>=0)
cout<<real<<"+i"<<img<<endl;
else
cout<<real<<"-i"<<img<<endl;
}
int main()
{
COMPLEX c1, c2, c3, c4;
system("clear");
cout<<"Enter the first complex number\n";
c1.initialize();
cout<<"Enter the second complex number\n";
c2.initialize();
c3.add(c1,c2);
c4.subtract(c1,c2);
c1.display();
c2.display();
c3.display();
c4.display();
return 0;
}