Skip to content

Instantly share code, notes, and snippets.

@udacityandroid
Created June 9, 2015 23:49
Show Gist options
  • Save udacityandroid/efc863aff5c2ff5784ce to your computer and use it in GitHub Desktop.
Save udacityandroid/efc863aff5c2ff5784ce to your computer and use it in GitHub Desktop.
Add to MainActivity.java
/**
* 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;
}
@pro-coder-fast
Copy link

public int displayQuantityB() {
int calculate = quantity * 5;
return calculate;
}

@abhi0320
Copy link

abhi0320 commented Jun 3, 2021

public int displayQuantityB() {
int calculate = quantity * 5;
return calculate;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment