-
-
Save sanhsa/29cfaa7c345c1754ad01fef731880282 to your computer and use it in GitHub Desktop.
Add to MainActivity.java
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
/** | |
* Calculates the price of the order. | |
* | |
* @param quantity is the number of cups of coffee ordered | |
*/ | |
private void calculatePrice(int quantity) { | |
int price = quantity * 5; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment