Last active
July 6, 2016 02:01
-
-
Save rightson/ab844cfd196260b121bad0409f6ffdd5 to your computer and use it in GitHub Desktop.
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
public String statement() { | |
double totalAmount = 0; | |
int frequentRenterPoints = 0; | |
Enumeration rentals = _rentals.elements(); | |
String result = "Rental Record for " + getName() + "\n"; | |
while (rentals.hasMoreElements()) { | |
double thisAmount = 0; | |
Rental each = (Rental) rentals.nextElement(); | |
thisAmount = amountFor(each); | |
// add frequent renter points | |
frequentRenterPoints ++; | |
// add bonus for a two day new release rental | |
if ((each.getMovie().getPriceCode() == Movie.NEW_RELEASE) && | |
each.getDaysRented() > 1) frequentRenterPoints ++; | |
//show figures for this rental | |
result += "\t" + each.getMovie().getTitle()+ "\t" + | |
String.valueOf(thisAmount) + "\n"; | |
totalAmount += thisAmount; | |
} | |
//add footer lines | |
result += "Amount owed is " + String.valueOf(totalAmount) + "\n"; | |
result += "You earned " + String.valueOf(frequentRenterPoints) + | |
" frequent renter points"; | |
return result; | |
} | |
private int amountFor(Rental each) { | |
int thisAmount = 0; | |
switch (each.getMovie().getPriceCode()) { | |
case Movie.REGULAR: | |
thisAmount += 2; | |
if (each.getDaysRented() > 2) | |
thisAmount += (each.getDaysRented() - 2) * 1.5; | |
break; | |
case Movie.NEW_RELEASE: | |
thisAmount += each.getDaysRented() * 3; | |
break; | |
case Movie.CHILDRENS: | |
thisAmount += 1.5; | |
if (each.getDaysRented() > 3) | |
thisAmount += (each.getDaysRented() - 3) * 1.5; | |
break; | |
} | |
return thisAmount; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment