Write a Fraction class called Fraction.java that implements following methods:
add ─ This method receives a Fraction parameter and adds the parameter fraction to the calling object fraction.
multiply ─ This method receives a Fraction parameter and multiplies the parameter fraction by the calling object fraction.
print ─ This method prints the fraction using fraction notation (1/4, 21/14, etc.).
printAsDouble ─ This method prints the fraction as a double (0.25, 1.5, etc.).
Separate accessor methods for each instance variable in the Fraction class. Please use the attached driver code to test the implementation of Fraction class.
Sample Output
Enter numerator; then denominator.
5
8
5/8
Enter numerator; then denominator.
4
10
4/10
Sum:
82/80
1.025
Product:
20/80
0.25
Enter numerator; then denominator.
6
0
infinity
Attachment:- JohnSmithProg7.zip