Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. package coins_to_register;
  2.  
  3. public class Coin
  4. {
  5. private double sValue;
  6.  
  7. public Coin(double sValue, String aName)
  8. {
  9. this.sValue = sValue;
  10. }
  11.  
  12. public double getValue()
  13. {
  14. return sValue;
  15. }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement