Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class Counter {
  2.  
  3. private int count;
  4.  
  5. public Counter() {
  6. this.count = 0;
  7. }
  8.  
  9. public void count() {
  10. count++;
  11. }
  12.  
  13. public int getCount() {
  14. return count;
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement