Advertisement
mmouhib

Personne

Oct 18th, 2021
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.35 KB | None | 0 0
  1. public class Personne {
  2.     public String nom, prenom;
  3.     private String adresse;
  4.  
  5.     public void init_Personne(String nom, String prenom, String adresse){
  6.         this.nom = nom;
  7.         this.prenom = prenom;
  8.         this.adresse = adresse;
  9.     }
  10.  
  11.     public void affiche_Homme(){
  12.         System.out.println(nom + prenom + adresse);
  13.     }
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement