Created
March 31, 2016 01:43
-
-
Save misspokeycat/4e27f37d601a1365471f493a3ff13e1a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Product firstProduct = new Product("Iphone", "22", 3, 199.99); | |
Product secondProduct = new Product("Android", "17", 9, 150.00); | |
//call the greaterThan() function of the first product with the second product as a param, to see if firstProduct > secondProduct | |
bool isItGreater = firstProduct.greaterThan(secondProduct); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment