Advertisement
piffy

Contatore

Sep 7th, 2021
1,317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. public class Contatore {
  2.    
  3.     public int getValore() {
  4.         return valore;
  5.     }
  6.  
  7.     public void setValore(int valore) {
  8.         this.valore = valore;
  9.     }
  10.  
  11.     private int valore=0;
  12.  
  13.     public static void main(String[] args) {
  14.         Contatore c= new Contatore();
  15.         System.out.println("Valore del contatore: "+c.getValore());
  16.  
  17.     }
  18.  
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement