Advertisement
joseleonweb

Untitled

Apr 24th, 2021
639
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. public class Coin {
  2.     private int denomination;
  3.     public Coin(int denomination){
  4.         this.denomination = denomination;
  5.     }
  6.     public int getDenomination(){
  7.         return denomination;
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement