Created
March 10, 2017 06:52
-
-
Save AndersonChoi/f2f970ab6dd271faedd26db70902c862 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
abstract class AbstractBook implements Book{ | |
public int priceCode(){ | |
return this.code; | |
} | |
public int getPointPercent(){ | |
return this.point; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment