Guest User

Untitled

a guest
Jul 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public Outcome(String name, int odds) {
  2. this.name = name;
  3. this.odds = odds;
  4. }
  5.  
  6. public Outcome(String name, int odds, int[] bins) {
  7. super(name, odds);
  8. this.bins = bins;
  9. }
Add Comment
Please, Sign In to add comment