Last active
November 13, 2015 01:50
-
-
Save arwagner/61d90d34f0bb3904dd17 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
void printOwning(double amount) { | |
printBanner(); | |
//print details | |
System.out.println("name:" + _name); | |
System.out.println("amount:" + amount); | |
} | |
/////////////////////////// | |
void printOwning(double amount){ | |
printBanner(); | |
printDetails(amount); | |
} | |
void printDetails(double amount){ | |
System.out.println("name:" + _name); | |
System.out.println("amount" + amount); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment