This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* The Fraction class from http://skylit.com/javamethods3/studentfiles.zip | |
* where the following are also implemented: | |
* - all methods of FractionI; | |
* | |
* JM3e Chapter 10.3 - Author: Alex | |
* @author EZRA GOLDNER <[email protected]> | |
*/ | |
public class Fraction implements FractionI, Comparable<Fraction> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* The Fraction class from http://skylit.com/javamethods3/studentfiles.zip | |
* where the following are also implemented: | |
* - all methods of FractionI; | |
* | |
* JM3e Chapter 10.3 - Author: Alex | |
* @author EZRA GOLDNER <[email protected]> | |
*/ | |
public class Fraction implements FractionI /*, Comparable<Fraction> */ |