Guest User

Untitled

a guest
Sep 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public class Counter {
  2.  
  3. private int counter;
  4.  
  5. public Counter(){
  6. this.counter = 0;
  7. }
  8.  
  9. public void decrement(){
  10. this.counter = this.counter - 1;
  11. }
  12.  
  13. public void printCount(){
  14. System.out.println(this.counter);
  15. }
  16. }
Add Comment
Please, Sign In to add comment