-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTRacional.java
69 lines (53 loc) · 975 Bytes
/
TRacional.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
59
60
61
62
63
64
65
66
67
68
69
// --------------------> TRacional
class TRacional{
//****ATRIBUTOS****
private int num,den;
//****METODOS****
//CONSTRUCTORES
TRacional(){
num = 0;
den = 1;
}
TRacional(int num, int den){
this.num = num;
if(den!=0)
this.den = den;
else
this.den = Integer.MIN_VALUE;
}
//METODOS SET
public void setNumerador(int num){
this.num = num;
}
public void setDenominador(int den){
this.den = den;
}
//METODOS GET
public int getNumerador(){
return num;
}
public int getDenominador(){
return den;
}
//METODOS DIVERSOS
private int mcd(int a, int b){
if(b == 0)
return a;
else
return mcd(b, a%b);
}
public void simplificaRacional(){
int MCD;
if(num>den)
MCD = mcd(num,den);
else
MCD = mcd(den,num);
num = num/MCD;
den = den/MCD;
}
public String toString(){
String cadena;
cadena = Integer.toString(num) + "/" + Integer.toString(den);
return cadena;
}
}//FIN CLASE RACIONAL