-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathoverload-operators.cpp
72 lines (63 loc) · 1.41 KB
/
overload-operators.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
60
61
62
63
64
65
66
67
68
69
70
71
72
// Overload Operators
// Operator Overloading in C++.
//
// https://www.hackerrank.com/challenges/overload-operators/problem
//
//Operator Overloading
#include<iostream>
using namespace std;
class Complex
{
public:
int a,b;
void input(string s)
{
int v1=0;
int i=0;
while(s[i]!='+')
{
v1=v1*10+s[i]-'0';
i++;
}
while(s[i]==' ' || s[i]=='+'||s[i]=='i')
{
i++;
}
int v2=0;
while(i<s.length())
{
v2=v2*10+s[i]-'0';
i++;
}
a=v1;
b=v2;
}
};
// (skeliton_head) ----------------------------------------------------------------------
//Overload operators + and << for the class complex
//+ should add two complex numbers as (a+ib) + (c+id) = (a+c) + i(b+d)
//<< should print a complex number in the format "a+ib"
Complex operator+(const Complex& x, const Complex& y)
{
Complex z;
z.a = x.a + y.a;
z.b = x.b + y.b;
return z;
}
ostream& operator<<(ostream& o, const Complex& x)
{
o << x.a << "+i" << x.b;
return o;
}
// (skeliton_tail) ----------------------------------------------------------------------
int main()
{
Complex x,y;
string s1,s2;
cin>>s1;
cin>>s2;
x.input(s1);
y.input(s2);
Complex z=x+y;
cout<<z<<endl;
}