-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFraction.java
58 lines (57 loc) · 1.04 KB
/
Fraction.java
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
public class Fraction
{
int num,deno;
public Fraction()
{
num=0;
deno=1;
}
public Fraction(int a,int b)
{
num=a;
deno=b;
}
void show()
{
System.out.println(num+"/"+deno);
}
int hcf(int a,int b)
{
int r=a%b;
while(r!=0)
{
a=b;
b=r;
r=a%b;
}
return (b);
}
int lcm(int a,int b)
{
int lcm=(a*b)/hcf(a,b);
return (lcm);
}
public Fraction add(Fraction a)
{
int l=lcm(deno,a.deno);
int h=(l/deno*num)+(l/a.deno*a.num);
return new Fraction(h,l);
}
public static void main(String args[])
{
Fraction P=new Fraction(2,7);
Fraction Q=new Fraction(3,14);
Fraction S=new Fraction();
S=P.add(Q).reduce();
P.show();
Q.show();
S.show();
}
public Fraction reduce()
{
int h=hcf(num,deno);
num/=h;
deno/=h;
return this;
}
}