Homework #1Implement in Java a class Coin that describes a coin with a name (e.g. dime) and a value (e.g. 10 cents). Also implement a class Wallet that describes a collection of coins. Supply a method add() to add a coin to a purse, and a method printContent() that prints out to standard output the contents of a purse in the following format:coinName (coinValue): numberOfCoins Example
penny (1 cent): 11 In order to test your Wallet class you'll also implement a class WalletTest whose main() method does the following:
Please note that the following two coins are different:
dime (10 cents) In addition to the above, your Wallet should supply a method equals() that tests whether two coins have the same name and value. Don't forget to re-read the syllabus to make sure you understand all the deliverables for assignments in this class, including this one.
$Id: hw1.html,v 1.3 2011/01/22 19:48:51 virgil Exp $ |