Skip to content

Instantly share code, notes, and snippets.

View lukaffm's full-sized avatar

Luka Vujeva lukaffm

  • MMD
  • Frankfurt am Main
View GitHub Profile
@lukaffm
lukaffm / Option A
Created December 12, 2017 08:06 — 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;
}