-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path7.2.cpp
102 lines (91 loc) · 1.85 KB
/
7.2.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
#include <iostream>
using namespace std;
class Fraction
{
public:
int num;
int den;
int conv(char a)
{
int n = a - '0';
return n;
}
void input()
{
int quit = 0;
do
{
int i=0;
num=0;
den=0;
string s;
cin>>s;
for(;i<s.length();i++)
{
if(s[i] == '/')
{
i++;
break;
}
num = num * 10 + conv(s[i]);
}
for(;i<s.length();i++)
{
if(s[i] == '\0')
{
break;
}
den = den * 10 + conv(s[i]);
}
if(den==0)
{
cout<<"0 is denominator is not allowed... kindly select a different fraction"<<endl;
quit=0;
}
else{quit=1;}
}while(quit==0);
}
void output()
{
cout<<num<<"/"<<den<<endl;
}
int gcd(int n1,int n2)
{
int HCF = 1;
for(int i = 1; i <= n1 ; i++)
{
if((n1 % i == 0) && (n2 % i == 0))
{
HCF=i;
}
}
return HCF;
}
void add(Fraction f1,Fraction f2)
{
num=(f1.num)*(f2.den)+(f2.num)*(f1.den);
den=(f1.den)*(f2.den);
int c=gcd(num,den);
num/=c;
den/=c;
}
};
int main()
{
int k=1;
do
{
Fraction f1,f2,f3;
cout<<"Enter 1st fraction : ";
f1.input();
cout<<"Enter 2nd fraction : ";
f2.input();
f3.add(f1,f2);
cout<<"Sum is : ";
f3.output();
cout<<"Press '1' if you want to continue : ";
cin>>k;
cout<<k<<endl;
}while(k==1);
return 0;
}