Project Java provides classes for working with several types of numbers, but it does not provide anything for working with fractions. My task is to implement a Fraction API (A pplication P rogrammer's ...
An Fraction representation for Java to avoid floating point errors over multiple operations by representing numbers as fractions. ##Example: Normally you would do this: double a = 1.2; double b = 2.4; ...