From d14071be53c520d84e741fe471d9f04fbea59c73 Mon Sep 17 00:00:00 2001 From: La Programmatrice Verde Date: Thu, 15 Jan 2026 22:14:47 +0100 Subject: [PATCH] Miglioria stampa --- src/mybank/Persona.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mybank/Persona.java b/src/mybank/Persona.java index 5269820..4c2fd8c 100644 --- a/src/mybank/Persona.java +++ b/src/mybank/Persona.java @@ -59,7 +59,7 @@ public class Persona { @Override public String toString(){ - return "\tNome: " + this.nome + "\n\tCognome: " + this.cognome + "\n\tCodice fiscale: " + this.codiceFiscale + return "\n\tNome: " + this.nome + "\n\tCognome: " + this.cognome + "\n\tCodice fiscale: " + this.codiceFiscale + "\n\tData di nascita: " + new SimpleDateFormat("dd/MM/yyyy").format(dataDiNascita); } } \ No newline at end of file