This file contains 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 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 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
/* | |
* GuessWord.java | |
* | |
* @author EZRA GOLDNER <[email protected]> | |
*/ | |
import java.lang.reflect.*; | |
public class GuessWord { | |
// There may be instance variables, constructors, and methods that are not shown. | |
private String word; | |
This file contains 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
/* | |
* CheckArray.java | |
* | |
* Implements a sorted method and several Boolean methods that determine | |
* whether the array fits a pattern. | |
* | |
* @author EZRA GOLDNER <[email protected]> | |
*/ | |
public class ArrayCheck |