Skip to content

Instantly share code, notes, and snippets.

@udacityandroid
Last active February 7, 2023 13:27
Show Gist options
  • Star 55 You must be signed in to star a gist
  • Fork 39 You must be signed in to fork a gist
  • Save udacityandroid/ad088cd4e920f2a2d778 to your computer and use it in GitHub Desktop.
Save udacityandroid/ad088cd4e920f2a2d778 to your computer and use it in GitHub Desktop.
Android Development for Beginners : Calculate the Price Method
/**
* Calculates the price of the order based on the current quantity.
*
* @return the price
*/
private int calculate price(int quantity {
int price = quantity * 5;
return price;
}
/**
* Calculates the price of the order based on the current quantity.
*
* @return the price
*/
private calculatePrice(int quantity)
int price = quantity * 5;
return price;
/**
* Calculates the price of the order based on the current quantity.
*
* @return the price
*/
private int calculatePrice(int quantity) {
int price = quantity * 5;
return price;
}
@sachinbhujbal
Copy link

Option C:

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