Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public class NimPile {
  2. int size;
  3.  
  4.  
  5.  
  6. public NimPile(){
  7. size = 1;
  8. }
  9.  
  10. public NimPile(int a){
  11. size = a;
  12. }
  13.  
  14. public int getsize(){
  15. return size;
  16. }
  17. public void setsize(int a){
  18. size = a;
  19. }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement