document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class Creatore
  2. {
  3.     public static void main(String[] args)
  4.     {
  5.         Persona io = new Persona("Luca", "bigLiukTheory", \'m\');
  6.         Persona lei = new Persona("Stefania", "Tahva", \'f\');
  7.        
  8.         io.stampaPersona();
  9.         lei.stampaPersona();
  10.        
  11.         int nIo = io.contaCaratteriNome();
  12.         int nLei = lei.contaCaratteriNome();
  13.        
  14.         System.out.println(nIo);
  15.         System.out.println(nLei);
  16.     }
  17. }
');