Advertisement
Guest User

Untitled

a guest
May 26th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. public class Libro {
  2.     private String titolo = "TITOLO_DA_INSERIRE";
  3.     public static int libriInScaffale;
  4.  
  5.     public Libro(String titolo){
  6.         titolo=titolo;
  7.     }
  8.  
  9.     public String getTitolo(){
  10.         return titolo;
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement