-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRationalNumber.cpp
235 lines (216 loc) · 5.74 KB
/
RationalNumber.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
#include<iostream>
using namespace std;
class Ration {
int num, den;
public:
Ration(int n, int d) {
num = d < 0 ? -n : n;
den = d < 0 ? -d : d;
reduce();
}
Ration() {
num = 0;
den = 1;
}
Ration operator+(Ration a) {
Ration t;
t.num = a.num * den + a.den * num;
t.den = a.den * den;
t.reduce();
return t;
}
Ration operator-(Ration s) {
Ration t;
t.num = s.den * num - den * s.num;
t.den = s.den * den;
t.reduce();
return t;
}
Ration operator*(Ration m) {
Ration t;
t.num = m.num * num;
t.den = m.den * den;
t.reduce();
return t;
}
Ration operator/(Ration v) {
Ration t;
t.num = v.den * num;
t.den = den * v.num;
t.reduce();
return t;
}
bool operator>(Ration v) {
float f1 = num / float(den);
float f2 = v.num / float(v.den);
if (f1 > f2)
return true;
else
return false;
}
bool operator<(Ration v) {
float f1 = num / float(den);
float f2 = v.num / float(v.den);
if (f1 < f2)
return true;
else
return false;
}
bool operator>=(Ration v) {
float f1 = num / float(den);
float f2 = v.num / float(v.den);
if (f1 >= f2)
return true;
else
return false;
}
bool operator<=(Ration v) {
float f1 = num / float(den);
float f2 = v.num / float(v.den);
if (f1 <= f2)
return true;
else
return false;
}
bool operator==(Ration v) {
float f1 = num / float(den);
float f2 = v.num / float(v.den);
if (f1 == f2)
return true;
else
return false;
}
bool operator!=(Ration v) {
float f1 = num / float(den);
float f2 = v.num / float(v.den);
if (f1 != f2)
return true;
else
return false;
}
void printRation() {
if (den == 0)
cout << "Cannot divide by 0.";
else if (num == 0)
cout << 0;
else
cout << num << "/" << den;
}
void reduce() {
int n = num < 0 ? -num : num;
int d = den;
int largest = n > d ? n : d;
int gcd = 0;
for (int loop = largest; loop >= 2; loop--) {
if (num % loop == 0 && den % loop == 0) {
gcd = loop;
break;
}
if (gcd != 0) {
num /= gcd;
den /= gcd;
}
}
}
};
int main() {
Ration r1, r2, r3;
int n, d;
int choice;
char ch;
cout << "\nEnter first ration number's numerator and denominator: ";
cin >> n >> d;
r1 = Ration(n, d);
cout << "\nEnter second ration number's numerator and denominator: ";
cin >> n >> d;
r2 = Ration(n, d);
do {
cout << "\n========================MENU========================";
cout << "\nOperations are: ";
cout << "\n1. +\n2. -\n3.*\n4. /\n5. >\n6. <\n7. >=\n8. <=\n9. !=\n10. ==\n11. Print\n12. Exit";
cout << "\n\tEnter your choice: ";
cin >> choice;
switch (choice) {
case 1:
cout << "\n";
r3 = r1 + r2;
r3.printRation();
break;
case 2:
cout << "\n";
r3 = r1 - r2;
r3.printRation();
break;
case 3:
cout << "\n";
r3 = r1 * r2;
r3.printRation();
break;
case 4:
cout << "\n";
r3 = r1 / r2;
r3.printRation();
break;
case 5:
if (r1 > r2) {
cout << "\n";
r1.printRation();
cout << " is greater than ";
r2.printRation();
}
break;
case 6:
if (r1 < r2) {
cout << "\n";
r2.printRation();
cout << " is greater than ";
r1.printRation();
}
break;
case 7:
if (r1 >= r2) {
cout << "\n";
r1.printRation();
cout << " is greater than or equal to ";
r2.printRation();
}
break;
case 8:
if (r1 <= r2) {
cout << "\n";
r2.printRation();
cout << " is greater than or equal to ";
r1.printRation();
}
break;
case 9:
if (r1 != r2) {
cout << "\n";
r1.printRation();
cout << " is not equal to ";
r2.printRation();
}
break;
case 10:
if (r1 == r2) {
cout << "\n";
r1.printRation();
cout << " is equal to ";
r2.printRation();
}
break;
case 11:
r1.printRation();
cout << "\nSecond rational number: ";
r2.printRation();
cout << "\nThird rational number: ";
r3.printRation();
break;
case 12:
exit(0);
}
cout << "\nDo you want to continue? (y/n): ";
cin >> ch;
} while (ch == 'y' || ch == 'Y');
return 0;
}