Advertisement
joseleonweb

Untitled

May 4th, 2021
697
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. public class Persona {
  2.     String nom;
  3.     String dni;
  4.     int edat;
  5.     Persona (String nom, String dni, int edat) {
  6.         this.nom = nom;
  7.         this.dni = dni;
  8.         this.edat = edat;
  9.     }
  10.  
  11. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement