codice:
 
public class libro {
    
    int isbn;
    String titolo;
    String autore;
    String editore;
    String genere;
    
    public libro(String titolo,String autore,int isbn,String editore,String genere){
        
        this.autore=autore;
        this.editore=editore;
        this.genere=genere;
        this.titolo=titolo;
        this.isbn=isbn;
    }
}