()
| 104 | |
| 105 | //--------------------------------------------------- |
| 106 | public void display() {//display the fraction in the format n/d |
| 107 | System.out.println(this.n + "/" + this.d); |
| 108 | } |
| 109 | //--------------------------------------------------- |
| 110 | |
| 111 | } |