int voto; String nome; public Dati(int x, String y){ voto=x; nome=y; }
public String toString(){ return this.nome+"_"+this.voto; }