class Studente{
private String Nome;
private String Cognome;
private String NumeroMatricola;
public Studente(String Nome,String Cognome, String NumeroMatricola){
this.Nome = Nome;
this.Cognome = Cognome;
this.NumeroMatricola = NumeroMatricola;
}
public void setNome(String NuovoNome){
this.Nome = NuovoNome;
}
public String getNome(){
return this.Nome;
}
public void setCognome(String NuovoCognome){
this.Cognome = NuovoCognome;
}
public String getCognome(){
return this.Cognome;
}
public void setNumeroMatricola(String NuovaNumeroMatricola){
this.NumeroMatricola = NuovaNumeroMatricola;
}
public String getNumeroMatricola(){
return this.NumeroMatricola;
}
public String toString(){
return "Nome = "+ this.Nome + " , Cognome = " + this.Cognome + " , NumeroMatricola = " + this.NumeroMatricola;
}
}