Skip to content

Instantly share code, notes, and snippets.

@ARTNS
ARTNS / Option A
Created April 16, 2016 17:38 — forked from udacityandroid/Option A
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;
}