Add copy constructor
This commit is contained in:
parent
b9e3db439f
commit
d291f7a330
1 changed files with 4 additions and 0 deletions
|
@ -9,6 +9,10 @@ class cnumber {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// Constructor
|
// Constructor
|
||||||
|
cnumber(const cnumber &z) {
|
||||||
|
r = z.r;
|
||||||
|
i = z.i;
|
||||||
|
}
|
||||||
cnumber(const fraction &a, const fraction &b) {
|
cnumber(const fraction &a, const fraction &b) {
|
||||||
r = a;
|
r = a;
|
||||||
i = b;
|
i = b;
|
||||||
|
|
Loading…
Add table
Reference in a new issue