- /**
- * Given two integers,
this class writes them as a fraction
- *
- * @author (your name)
- * @version (a version
number or a date)
- */
- public class
Fraction {
- int
a, b;
-
-
public Fraction (int aa,
int bb) {
- a = aa;
- b = bb;
- }
-
- //
Overrides toString method from the Object class
-
public String
toString ( ) {
-
String s = "";
-
return s + a + " / " + b;
- }
- }