-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomplex.h
More file actions
62 lines (58 loc) · 978 Bytes
/
complex.h
File metadata and controls
62 lines (58 loc) · 978 Bytes
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
60
61
62
#include <iostream>
//#include "point.h"
using namespace std;
class complex
{
public:
complex(point& p)
{
this->real = p.getx();
this->imaginary= p.gety();
}
complex()
{
this->real = 2;
this->imaginary = 5;
}
complex(float rea,float img)
{
this->real = rea;
this->imaginary = img;
}
void setreal()
{
this->real = 2;
}
void setimaginary()
{
this->imaginary =5;
}
float getreal()
{
return this->real;
}
float getimaginary()
{
return this->imaginary;
}
complex(complex& clonez1)
{
this->real = clonez1.real;
this->imaginary = clonez1.imaginary;
}
complex add(complex z2)
{
complex result;
result.real = this->real-z2.real;
result.imaginary = this->imaginary-z2.imaginary;
return result;
}
void show()
{
cout<<"Real Part:"<< this->real <<endl;
cout<<"Imaginary Part:"<< this->imaginary <<endl;
}
private:
float real;
float imaginary;
};