Skip to content

Instantly share code, notes, and snippets.

View mohamedagamy's full-sized avatar
:octocat:
coding...

mohamedelagamy mohamedagamy

:octocat:
coding...
View GitHub Profile
@mohamedagamy
mohamedagamy / Option A
Created August 13, 2016 00:51 — 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;
}