Hello all. I'm a Software Engineering student, and I'm attempting to write a program in Java that does as follows:
UML for the class:
Fraction()
Fraction(numera tor: int)
Fraction(numera tor: int, denominator: int)
Fraction(value: String)
add(frac: Fraction): Fraction
subtract(frac: Fraction): Fraction
divide(frac: Fraction): Fraction
multiply(frac: Fraction): Fraction...