Skip to content

Instantly share code, notes, and snippets.

@bgannon29
Created May 31, 2019 02:38
Show Gist options
  • Save bgannon29/2eb72c9c8506aaa863fbfe90247a157a to your computer and use it in GitHub Desktop.
Save bgannon29/2eb72c9c8506aaa863fbfe90247a157a to your computer and use it in GitHub Desktop.
JustJava App
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