-
Notifications
You must be signed in to change notification settings - Fork 0
/
operator overloading.cpp
111 lines (100 loc) · 2.58 KB
/
operator overloading.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#include <iostream>
using namespace std;
class Fraction
{
private:
int top;
int bottom;
public:
Fraction(int t , int b) : top{t} , bottom{b} //constructor
{
}
Fraction() : top{1} , bottom{1} //constructor
{
}
Fraction operator+(const Fraction& rightFraction)
{
Fraction result;
result.top = top * rightFraction.bottom + bottom * rightFraction.top ;
result.bottom = bottom * rightFraction.bottom;
return result;
}
Fraction operator*(double d)
{
Fraction result;
result.top = top * d;
result.bottom = bottom;
return result;
}
Fraction operator*(const Fraction& rightFraction)
{
Fraction result;
result.top = top * rightFraction.top;
result.bottom = bottom * rightFraction.bottom;
return result;
}
bool operator<(const Fraction& rightFraction)
{
if(top * rightFraction.bottom < bottom * rightFraction.top){
return true;
}
return false;
}
bool operator>(const Fraction& rightFraction)
{
if(top * rightFraction.bottom > bottom * rightFraction.top){
return true;
}
return false;
}
bool operator<=(const Fraction& rightFraction)
{
if(top * rightFraction.bottom <= bottom * rightFraction.top){
return true;
}
return false;
}
bool operator>=(const Fraction& rightFraction)
{
if(top * rightFraction.bottom >= bottom * rightFraction.top){
return true;
}
return false;
}
bool operator==(const Fraction& rightFraction)
{
if(top * rightFraction.bottom == bottom * rightFraction.top){
return true;
}
return false;
}
friend Fraction operator*(double d, const Fraction& rightFraction);
friend ostream & operator<<(ostream & os, const Fraction & rightFraction);
};
Fraction operator*(double d, const Fraction& rightFraction)
{
Fraction result;
result.top = d * rightFraction.top;
result.bottom = rightFraction.bottom ;
return result;
}
ostream & operator<<(ostream & os, const Fraction & rightFraction)
{
os << rightFraction.top << '/' << rightFraction.bottom ;
return os;
}
int main()
{
Fraction a(5,2) , b(7,3) , c(1,5) , d(1,5);
cout<< " a*b = " << a*b << endl ;
cout<< " a+b = " << a+b << endl ;
cout<< " a*5 = " << a*5 << endl ;
cout<< " 6*b = " << 6*b << endl ;
if(a>b)
cout<< " a>b " << endl ;
if(c<a)
cout<< " c<a " << endl ;
if(c==d)
cout<< " c==d " << endl ;
return 0;
}