Created
May 31, 2019 02:38
-
-
Save bgannon29/2eb72c9c8506aaa863fbfe90247a157a to your computer and use it in GitHub Desktop.
JustJava App
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 void submitOrder(View view) { | |
displayMessage(calculatePrice(quantity)); | |
} | |
@org.jetbrains.annotations.NotNull | |
private String calculatePrice(int quantity){ | |
return priceMessage + "\n" + NumberFormat.getCurrencyInstance().format(quantity * pricePerCup); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment